forked from gSchool/restaurant_site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 868 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 868 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link href='//fonts.googleapis.com/css?family=Imprima' rel='stylesheet' type='text/css'>
<link href="/css/normalize.min.css" rel="stylesheet" type="text/css">
<link href="/css/default.css" rel="stylesheet" type="text/css">
<title>Tiffin's Indian Restaurant</title>
</head>
<body>
<header>Tiffin's Indian Restaurant</header>
<main>
<p>Welcome to Tiffin's!</p>
<p>We have amazing indian food!</p>
<img src="/images/indianfood.jpg">
<ul>
<li>Tandoori Chicken</li>
<li>Chicken Tikka Masala</li>
<li>Butter Chicken</li>
<li>Chole</li>
<li>Kaali Dhal</li>
</ul>
</main>
<footer>
<address>123 Colfax Denver, CO</address>
<a href ="mailto:ems2141@gmail.com">Contact Us</a>
© 2013
</footer>
</body>
</html>