-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>El Amigo Pub + Grill</title>
<link href="dirty.css" rel="stylesheet">
</head>
<body>
<div id="container">
<div id="header">
<a href="/" title="Return to Home Page" id="logo"></a>
<img src="images/logo.png" alt="El Amigo Pub + Grill. Best Craft Beer in Spain!">
</div>
<div id="content" class="content-block">
<h1>The Best Craft Beer in Spain!</h1>
<p>Beinvenido Amigos! We are not a real location. but that doesn't mean we can't imagine we have the best beer in Spain!</p>
</div>
<div id="reserve" class="content-block">
<h2>Make a Reservation</h2>
<p>Get your spot before somebody else does!</p>
<form>
<label for="your_name">Your Name</label>
<input type="text" id="your_name" placeholder="Your Name Here">
<label for="your_email">Your Email</label>
<input type="text" id="your_email" placeholder="id@email.com">
<label for="your_time">Reservation Time</label>
<input type="text" id="your_time" placeholder="Tomorrow @ 10pm">
<input type="submit" value="Reserve">
</form>
</div>
<div id="footer" class="content-block">
© Wes Hampton 2019
</div>
</div> <!-- End Container -->
</body>
</html>