forked from HR35PreCourse/super-lotto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 900 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Super Lotto</title>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<section id="choose-num">
<h1>Choose lotto numbers (from 1-10)</h1>
<form>
<input type="number" id="input-1" placeholder="Enter first number"></input>
<input type="number" id="input-2" placeholder="Enter second number"></input>
<button id="submit" action="submit">Submit two numbers</button>
</form>
</section>
<section id="show-num">
</section>
<section id="win-lose"></section>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>