-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.44 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.44 KB
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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Random Numbers, Dices and Raffles</title>
<meta name="description" content="Random numbers, dices and raffles">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Toni Virtanen">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
RANDOM NUMBERS AND A RAFFLE
</header>
<main>
<div id="selectors" class="container">
<button id="numbers" class="btn-clickers" onClick="numbersPage()">Draw Number </button>
<button id="dices" class="btn-clickers" onClick="dicesPage()">Roll The Dice</button>
<button id="order" class="btn-clickers" onClick="pickWinnerPage()">Arrange A Raffle</button>
</div>
<div id="template" class="gridWrapper"></div>
<div id="forms" class="flexCenter"></div>
<div id="list" class="flexCenter"></div>
<div id="results" class="flexCenter"></div>
</main>
<footer id="footer" class="footer">
<a href="https://github.com/tonikv">CREATED by tonikv</a>
</footer>
<script src="index.js" async defer></script>
</body>
</html>