<!DOCTYPE html>
<html>
<head>
<title>FIRST HTML</title>
</head>
<body>
<h1>FIRST HTML</h1>
</body>
</html>
MARKUP LANGUAGE USED TO BUILD WEBPAGES
a{
text-decoration: none;
color: red;
background: white;
font-weight: 700;
/*Language of styling*/
}
STYLE SHEET TO STYLE WEB PAGES
function click(){
document.getElementById('btn').style.color = "red";
document.getElementById('btn1').style.color = "blue";
document.getElementById('btn2').style.color = "green";
console.log('done')
}
LANGUAGE TO GIVE LOGICS TO WEBPAGES