noololly.hackclub.app/index.html

33 lines
858 B
HTML
Raw Normal View History

2021-12-08 19:40:13 +00:00
<!DOCTYPE html>
<html>
2022-01-26 12:49:07 +00:00
<title>Alex is the fricking best!</title>
2021-12-08 19:40:13 +00:00
<head>
<style>
2021-12-17 11:47:25 +00:00
.alex{
background-color: black;
color: white;
border: solid black;
padding: 0px;
font: brush-script-mt
2021-12-08 19:40:13 +00:00
}
</style>
2021-12-17 11:27:57 +00:00
<script>
var alex = "The Best";
if(alex == "The Best"){
2022-03-04 11:59:00 +00:00
alert("that alex is the best!!");
2022-03-04 12:06:03 +00:00
}
while(true){
2022-03-04 12:06:42 +00:00
setTimeout(() => {alert("I'm never gonna give you up");}, 60000);
2021-12-17 11:27:57 +00:00
}
</script>
2021-12-08 19:40:13 +00:00
</head>
<body>
2021-12-17 11:47:25 +00:00
<div class="alex">
2021-12-17 11:27:57 +00:00
<p>Alex is the best!!</p>
2022-01-26 12:54:18 +00:00
<img src="milk.jpg" width=1900px height=200px>
<img src="cat.jpg" width = 1900px height = 200px>
2022-02-05 13:39:01 +00:00
<iframe src="https://giphy.com/embed/lgcUUCXgC8mEo" width="360" height="300" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
2021-12-08 19:40:13 +00:00
</div>
</body>
</html>