Update index.html

This commit is contained in:
Noololly 2021-12-17 11:47:25 +00:00 committed by GitHub
parent 298840db23
commit 0258e5458b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,20 +3,25 @@
<title>Test!</title> <title>Test!</title>
<head> <head>
<style> <style>
.olly{ .alex{
background-color: red; background-color: black;
color: white;
border: solid black;
padding: 0px;
font: brush-script-mt
} }
</style> </style>
<script> <script>
var alex = "The Best"; var alex = "The Best";
if(alex == "The Best"){ if(alex == "The Best"){
alert("Alex is the best!!"); alert("that Alex is the best!!");
} }
</script> </script>
</head> </head>
<body> <body>
<div class="olly"> <div class="alex">
<p>Alex is the best!!</p> <p>Alex is the best!!</p>
<img src="milk.jpg" width=1900px height=200px>
</div> </div>
</body> </body>
</html> </html>