-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.03 KB
/
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
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FIZZ BUZZ SOLVER</title>
<link rel="icon"
href="https://images-platform.99static.com/FH1_jFWcLIgZZ8C5NDS153u-L-8=/200x200:1800x1800/500x500/top/smart/99designs-contests-attachments/84/84790/attachment_84790942">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<input type="text" id="counts" placeholder='seperate numbers by "," (comma)'>
<button onclick="fizzBuzz()">FIZZ BUZZIFY!</button>
</div>
<div class="res">
<h1><p>INPUT = </p>
<p id="question"></p>
</h1>
<h1><p>ANSWER = </p>
<p id="result"></p>
</h1>
</div>
<div class="res" id="exp"></div>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="sweetalert2.all.min.js"></script>
</body>
</html>