-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (39 loc) · 1.31 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
<!doctype html>
<html>
<head>
<title>Pizza Topping Generator</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="bootstrap-theme.css">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<a class="navbar-brand" href="#">Pizza Randomizer</a>
<p class="navbar-text pull-right">By the people at <a href="https://github.com/Queens-Hacks">Queen's Hacks</a></p>
</div>
</div>
<div class="container">
<form id="options">
<div class="jumbotron">
<h1>Choose Toppings!</h1>
<p>
<div class="row">
<div class="form-group col-sm-6">
<label for="meats">Meats</label>
<input type="number" class="form-control" name="meats" value="1">
</div>
<div class="form-group col-sm-6">
<label for="veggies">Veggies</label>
<input type="number" class="form-control" name="veggies" value="1">
</div>
</p>
</div>
<p class="text-center"><button type="submit" class="btn btn-primary btn-lg">Generate me a Pizza</button></p>
</div>
</form>
<div id="result"></div>
</div>
<script src="jquery-2.0.3.js"></script>
<script src="pizza.js"></script>
</body>
</html>