forked from shaidavis/beer-review-c2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="script.js"></script>
<title>Beer Review</title>
</head>
<body>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="page-header">
<h1>Beer Review</h1>
</div>
<section class="beers show">
<h2>Beers</h2>
</section>
<form class="beer-form show">
<h3>Add a New Beer</h3>
<div class="form-group">
<input type="text"
class="beer-input form-control"
placeholder="Beer Name">
</input>
</div>
<div class="form-group">
<input type="text"
class="user-input form-control"
placeholder="User">
</input>
</div>
<button class="btn btn-primary post-beer">Post</button>
</form>
</div>
</div>
</body>
</html>