noololly.hackclub.app/index.html
2022-02-05 13:36:35 +00:00

29 lines
766 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!!");
}
</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=1900 height=200px frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
</div>
</body>
</html>