noololly.hackclub.app/index.html
2022-03-04 12:06:03 +00:00

32 lines
857 B
HTML

<!DOCTYPE html>
<html>
<title>Alex is the fricking best!</title>
<head>
<style>
.alex{
background-color: black;
color: white;
border: solid black;
padding: 0px;
font: brush-script-mt
}
</style>
<script>
var alex = "The Best";
if(alex == "The Best"){
alert("that alex is the best!!");
}
while(true){
setTimeout(() => {alert("I'm never gonna give you up");}, 60000);
}
</script>
</head>
<body>
<div class="alex">
<p>Alex is the best!!</p>
<img src="milk.jpg" width=1900px height=200px>
<img src="cat.jpg" width = 1900px height = 200px>
<iframe src="https://giphy.com/embed/lgcUUCXgC8mEo" width="360" height="300" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
</div>
</body>
</html>