22 lines
401 B
HTML
22 lines
401 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>Test!</title>
|
|
<head>
|
|
<style>
|
|
.olly{
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
<script>
|
|
var alex = "The Best";
|
|
if(alex == "The Best"){
|
|
alert("Alex is the best!!");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="olly">
|
|
<p>Alex is the best!!</p>
|
|
</div>
|
|
</body>
|
|
</html>
|