27 lines
566 B
HTML
27 lines
566 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>
|
|
</div>
|
|
</body>
|
|
</html>
|