-
Notifications
You must be signed in to change notification settings - Fork 0
/
no.html
26 lines (22 loc) · 913 Bytes
/
no.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
<!DOCTYPE html>
<html>
<head>
<title>FizzBuzzinator</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h2>FizzBuzz is a basic coding challenge</h2>
<p class="explain">The object is to write a program that prints out the numbers 1 to 100. But for multiples of three, replace the number with the string 'Fizz' and for multiples of five write 'Buzz'. For numbers that are multiples of both three and five, write 'FizzBuzz'. <br/>
It looks like this:
</p>
<div class="fizzBuzz">
</div>
<div class="buttons">
<button id="noPageButton">Got It</button>
</div>
<a href="index.html">Home</a>
</body>
<script src="CodeSample.js"></script>
<script>theBuzz("fizz", "buzz")</script>
<script>gotItButton.addEventListener("click", redirectToPlay)</script>
</html>