-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 903 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Lottery App</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css">
<link rel="stylesheet" href="stylesheets/main.css">
</head>
<body>
<div class="title-container">
<h1 class="title rainbow">Lottery Number Picker</h1>
<h3 class="sub-title">Generate a random number for your lottery ticket!</h3>
</div>
<div class="number-container" number-generator="list">
</div>
<div class="button-container">
<button class="generator-button" number-generator-button="trigger">Generate Numbers</button>
</div>
<script src="scripts/main.js" charset="utf-8"></script>
</body>
</html>