-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<title>The Krispy Tac0 | Home</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=windows-1252" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/modernizr-1.5.min.js"></script>
</head>
<body>
<div id="main">
<header>
<div id="banner">
<div id="welcome">
<a><img src="./images/Logo.png" alt="The Krispy Tac0 Logo" width="150" height="100"></a>
</div>
</div>
</header>
<nav>
<div id="menubar">
<ul id="nav">
<li class="current-home"><a href="index.html">Home</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./menu.html">Our Menu</a></li>
</ul>
</div>
</nav>
<div id="site_content">
<div id="content">
<div class="" align="center">
<h1>Welcome!</h1>
<img src="./images/taco-truck.jpg" alt="Taco Truck" width="300" height="200">
<h1>Where can you find us?</h1>
<p>You can mainly find us in Memphis, TN at any big outdoor events!</p>
<h3>How can you reserve us?</h3>
<h3>You can email us at <a href="mailto:THISISNOTAVAILDEMAIL@example.com">TheKrisyTac0@example.com</a></h3>
</div><!--close content_item-->
</div><!--close content-->
</div><!--close site_content-->
</div><!--close main-->
<footer>
<a href="./index.html">Home</a> | <a href="./about.html">About Us</a> | <a href="menu.html">Menu</a><br/><br/>
<p>© 2016 The Krispy Tac0
</footer>
<script type="text/javascript" src="js/jquery.js"></script>
</body>
</html>