-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 822 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
<head>
<!-- Bootstrap stuff -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css"
/>
<link rel="stylesheet" href="assets/bg.css" />
<script src="assets/generator.js"></script>
</head>
<body>
<div class="container">
<h1 class="text-center">Taco Bell Item Generator™</h1>
<div class="jumbotron">
<h1 class="text-center" id="tacobell-item">
<script>
setItemOnscreen();
</script>
</h1>
</div>
<input
type="submit"
class="btn btn-lg center-block btn-warning"
onClick="setItemOnscreen();"
name="Generate"
value="Generate"
/>
</div>
</body>