How make a clickable Button using HTML & JAVASCRIPT

preview_player
Показать описание
In this video I have shown you how to make a simple clickable button in webpage by using Javascript and Html. This video is helpful for those who want to know about the combination of HTML and Javascript coding and a simple clickable button code in webpage which is basically used in our day to day life eg. SUBSCRIBE button on YouTube so if you like this video then please SUBSCRIBE to this channel, THANKS FOR WATCHING

LINK FOR BUTTON CODE

Link For Note Editor Which is used in this Video

Click For More Videos 🤗 👉🏻#Epictechnicaltricks 👈🏻

____________
Click for more Videos:👉🏻#Epictechnicaltricks 👈🏻

__________________

PLEASE SUBSCRIBE & SUPPORT TO THIS CHANNEL 😁

RELATED SEARCH TERMS
__________________________

1. How to make button on html,
2. How to make a clickable button,
3. How to make a clickable button on html,
4. How to change the value of a button when click it,
5. How to make button tag in html,
6. How to add hover effect on Button in Html,
7. How to make a SUBSCRIBE button,
8. How to make a SUBSCRIBE button in Html,
9. How change the text on a button on click in html,
10. Change the value of a button in html,
_______________________________________________________

_____________THANKS FOR WATCHING ______________
________________________________________________________#ett
Рекомендации по теме
Комментарии
Автор

Code used :

<!DOCTYPE html>
<html>
<head>
<title>SUBSCRIBE BUTTON EFFECT</title>
<script type="text/javascript">
var btn='t';
function c()
{
var btn1 =
if(btn=='t'){
btn1.value='SUBSCRIBED';
btn='f';
} else{
btn1.value='SUBSCRIBE';
btn='t';
}
}

</script>
<style>
input{
border: 1px solid red;
color:red;
background: #F0F8FF ;
padding: 10px 20px;
font-size: 20px;
font-family: "montserrat";
cursor: pointer;
transition:0.6s;
width:200px;}
input:hover{
color:white;
background:red;}
</style>
</head>

<body>
<input type="button" value="SUBSCRIBE" id="btnsub" onclick="c();"></input>
</body>
</html>

EPICTechnicalTricks
Автор

Bro coding comments section ke ander Dall do plz

NirmalaDevi-wcss
Автор

Thank you! Now i will go and make a button in Javascript :)

Stanley_Fragger
Автор

Thank you so much this is awesome

Also is it possible when I have more than 1 button for them to have different size, background color or something

brevinpalmes
welcome to shbcf.ru