-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (64 loc) · 2.58 KB
/
index.html
File metadata and controls
72 lines (64 loc) · 2.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tuts+town</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="tuts+town.css">
</head>
<body>
<header class="primary-header">
<h1 class="main-heading">Welcome To Tuts+ Town</h1>
<img class="town-preview" src="images/welcome.png" alt="welcome">
</header>
<main>
<section class="store-section">
<div>
<img class="building" src="images/sleep.png" alt="hotel">
<h2 class="category-heading">sleep</h2>
<ul class="store-list">
<li class="store-name">
<a class="store-link" href="#">The snooz Inn</a>
</li>
<li class="store-name">
<a class="store-link" href="#">Zzz Hotel</a>
</li>
</ul>
</div>
</section>
<section class="store-section">
<div class="store-details">
<img class="building" src="images/food.png" alt="retaurent">
<h2 class=".category-heading">Food</h2>
<ul class="store-list">
<li class="store-name">
<a class="store-link" href="#">Just Cokies</a>
</li>
<li class="store-name">
<a class="store-link" href="#">Cake Too</a>
</li>
</ul>
</div>
</section>
<section class="store-section">
<div class="store-details" >
<img class="building" src="images/shop.png" alt="shop">
<h2 class="category-heading">sleep</h2>
<ul class="store-list">
<li class="store-name">
<a class="store-link" href="#">Puppy parade</a>
</li>
<li class="store-name">
<a class="store-link" href="#">Cool Kittens</a>
</li>
</ul>
</div>
</section>
</main>
<footer class="primary-footer">
<p class="created-by ">Created with enthusiasm by caring residents.</p>
</footer>
</body>
</html>