-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (28 loc) · 1008 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,900' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="center-align branding">
<h2> A random lottery numbers picker</h2>
<img src="assets/img/logo.png" class="logo" />
</div>
<button class="btn" onclick="start();">Pick numbers</button>
</div><!-- .container -->
<div class="row blue center-align overflow">
<div class="container">
<!-- <div id="number"></div> -->
<ul id="list"></ul>
</div><!-- .container -->
</div><!-- .row -->
<h3 class="center-align footer">
Made by <a href="http://www.shaneprendergast.co.uk/">Shane Prendergast</a>
for <a href="http://function.webknit.co.uk/">function</a>.
Thanks to <a href="http://craig-pratt.co.uk/">Craig Pratt</a> for his help!
</h3>
<script src="assets/js/script.js"></script>
</body>
</html>