π2β€1
HTML_Complete_Notes (1).pdf
12.9 MB
β€3π1
Important and best notes πβ€οΈ
Do not forget to React β€οΈ to this Message for More Content Like this
Share with your friends π https://t.me/addlist/vnAFuK9rY6FjNjM1
Do not forget to React β€οΈ to this Message for More Content Like this
Share with your friends π https://t.me/addlist/vnAFuK9rY6FjNjM1
β€6π1
π Unlock Your Web Development Career! π
π Join the Future of Tech with Our Amazing Course Offer!
β¨ Courses Available:
- π¨ PW Skills Web Development
- β Delta 5.0 Batch: Apna College
- π» DOT Batch: Love Babbar
- π Namaste React
- π Namaste JavaScript
- βοΈ Namaste NodeJs
- π Cohort 3.0: Web + DevOps
- π§ Full Stack Web Development: Naresh IT & DurgaSoft
- π Sanket Singh Full Stack Web Development
- π NodeJS: Sanket Singh
- π MERN Stack: Anuj Bhaiya
- π₯οΈ PHP: Ram Sir
- π¨ Frontend Development: IIT Madras
- π Almabetter Full Stack Web Development Course
- β‘ ASHOK IT Node JS
- β UI Full Stack: Sudhakar Sharma | Naresh IT
- π₯ Sherians Frontend Course
π Donβt Miss Out! Grab Your Spot Today and Transform Your Future!
π Contact Us Now! @Myhurthearts @imabhi3030 π¨β¨
π Join the Future of Tech with Our Amazing Course Offer!
β¨ Courses Available:
- π¨ PW Skills Web Development
- β Delta 5.0 Batch: Apna College
- π» DOT Batch: Love Babbar
- π Namaste React
- π Namaste JavaScript
- βοΈ Namaste NodeJs
- π Cohort 3.0: Web + DevOps
- π§ Full Stack Web Development: Naresh IT & DurgaSoft
- π Sanket Singh Full Stack Web Development
- π NodeJS: Sanket Singh
- π MERN Stack: Anuj Bhaiya
- π₯οΈ PHP: Ram Sir
- π¨ Frontend Development: IIT Madras
- π Almabetter Full Stack Web Development Course
- β‘ ASHOK IT Node JS
- β UI Full Stack: Sudhakar Sharma | Naresh IT
- π₯ Sherians Frontend Course
π Donβt Miss Out! Grab Your Spot Today and Transform Your Future!
π Contact Us Now! @Myhurthearts @imabhi3030 π¨β¨
π° Try this html elements in your next projects
π2
This media is not supported in your browser
VIEW IN TELEGRAM
Source Code π
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<input type="button" value="red"
onclick="red()">
<input type="button" value="Green"
onclick="green()">
<input type="button" value="Blue"
onclick="blue()">
<script type="text/javascript">
function red(){
document.bgColor="red";
}
function green(){
document.bgColor="green";
}
function blue(){
document.bgColor="blue";
}
</script>
</body>
</html>
β€4π3