forked from veleary/Week-1-FE-Eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (98 loc) · 3.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Evangeline Cafe</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://cdn.jsdelivr.net/foundation/4.3.2/css/foundation.css">
<!-- put in font awesome -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Average+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<style type="text/css">
* {
/* border: 1px solid red;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;*/
}
</style>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Header and Nav -->
<div class="row">
<div class="large-2 columns">
<img class="logo" src="images/logo2.jpg" alt="Logo" title="Evangeline Cafe">
</div>
<div class="large-3 columns">
<h3 id="restaurant-name">
Evangeline Cafe
</h3>
</div>
<div class="large-7 columns">
<ul class="right button-group">
<li><a href="#" class="button nav">Home</a></li>
<li><a href="#" class="button nav">Menu</a></li>
<li><a href="#" class="button nav">Events</a></li>
<li><a href="#" class="button nav">Videos</a></li>
<li><a href="#" class="button nav">About Us</a></li>
<li><a href="#" class="button nav">Contact</a></li>
</ul>
</div>
</div>
<!-- End Header and Nav -->
<!-- First Band (Slider Image) -->
<div class="row">
<div class="large-12 columns main">
<div class=" large-6 columns tagline">
<div id="slider">
Serving Cajun and Creole Cuisine and Austin's Best Live Music in a Relaxed Hometown Atmosphere
</div>
</div>
</div>
</div>
<!-- Three-up Content Blocks -->
<div class="row features-row">
<div class="large-4 columns">
<div class="features">
<img src="http://placehold.it/100x100&text=[img]" />
<h4>Contact</h4>
<p>512.282.2586<br>
8106 Brodie Lane<br>
Austin, TX 78745<br>
</div>
</div>
<div class="large-4 columns">
<div class="features" id="middle-feature">
<img src="http://placehold.it/100x100&text=[img]" />
<h4>Hours</h4>
<p>Bacon ipsum dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit.</p>
</div>
</div>
<div class="large-4 columns">
<div class="features">
<img src="http://placehold.it/100x100&text=[img]" />
<h4 >Upcoming Shows</h4>
<p>Mike Barfield<br>November 15 at 10:00pm</p>
</div>
</div>
</div>
<!-- Footer -->
<footer class="row">
<div class="footer-space">
<div class="large-12 columns">
<div class="row">
<div class="large-6 columns">
<p>© Copyright no one at all. Go to town.</p>
</div>
<div class="large-6 columns">
<p class="creator">Created by John Caldwell</p
</div>
</div>
</div>
</div>
</footer>
<!-- End of Footer -->
</body>
</html>