-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 887 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FizzBuzz</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1>FizzBuzz</h1>
</header>
<main>
<div class= "instructions">
<h2>Instructions</h2>
<ol>
<li>Print a program that prints the numbers 1 to 100.</li>
<li>If a number is a multiple of 3, print "Fizz."</li>
<li>If a number is a mutiple of 5, print "Buzz."</li>
<li>If a number is both a multiple of 3 and 5, print "FizzBuzz"</li>
</ol>
</div>
<div id="numlist"></div>
</main>
<script src="script.js"></script>
</body>
</html>