CLASS WEB
Scratch Web
PLAY
<!doctype html>
<html>
<head>
<title>HELLO WORLD</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
window.onload = function(){
document.getElementsByTagName('h1')[0].style.fontSize = '40px';
}
</script>
<style>
html{background:#000}
h1{color:hotpink}
b{font-size:100px}
</style>
</head>
<body>
<h1>Welcome<br> to<br> <b>PinkCoding</br></h1>
</body>
</html>