noololly.hackclub.app/index.html
2021-12-17 11:27:57 +00:00

22 lines
401 B
HTML

<!DOCTYPE html>
<html>
<title>Test!</title>
<head>
<style>
.olly{
background-color: red;
}
</style>
<script>
var alex = "The Best";
if(alex == "The Best"){
alert("Alex is the best!!");
}
</script>
</head>
<body>
<div class="olly">
<p>Alex is the best!!</p>
</div>
</body>
</html>