-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.98 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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>SPGC Sterling Lotto</title>
<link rel="shortcut icon" type="image/x-icon" href="logo.ico">
<link rel="stylesheet" href="bootstraps/css/bootstrap.css">
<link rel="stylesheet" href="styles/rand_gen.css">
<script src="scripts/jquery-3.3.1.js"></script>
<script src="bootstraps/js/bootstrap.bundle.js"></script>
<script src="scripts/request.js"></script>
<script src="scripts/rand_gen.js"></script>
</head>
<body>
<div class="container">
<div class="row justify-content-center my-3">
<p class="text-center h2">SPGC LOTTO</p>
</div>
<div class="row justify-content-center mt-3 mb-4" id="second_row">
<div class="colss mr-4 round purple">
<p id="output2" name="output2" class="rand_num text-center display-3"></p>
</div>
<div class="colss mr-4 round orange">
<p id="output1" name="output1" class="rand_num text-center display-3"></p>
</div>
<div class="colss round green">
<p id="output0" name="output0" class="rand_num text-center display-3"></p>
</div>
</div>
<div class="row justify-content-center mb-3">
<div class="col-4 mr-1">
<button class="btn btn-block btn-primary btn-lg" id="rand_gen">Generate</button>
</div>
<div class="col-4 mr-1" id="reset_div">
<input type="reset" id="reset" class="btn btn-block btn-primary btn-lg">
</div>
</div>
<div class="row justify-content-center mb-3" id="result_div">
<div class="col-8">
<a class="btn btn-success btn-block btn-lg" href="results.html" target="_blank">See all results</a>
</div>
</div>
</div>
</body>
</html>