-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.html
154 lines (122 loc) · 5.5 KB
/
sitemap.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<title>Site Map - Vancouver Hidden Gem Eateries</title>
<meta charset="utf-8">
<link rel=stylesheet href="main.css">
</head>
<body>
<div class="backdrop">
<a href="index.html"><img src="images/spices_final.png" alt="greenleaf"></a>
</div>
<nav>
<div class="dropdown">
<a href="index.html" class="dropbtn">Home</a>
</div>
<div class="dropdown">
<button class="dropbtn">Japanese</button>
<div class="dropdown-content">
<a href="jap_tetsu.html">Tetsu Sushi Bar</a>
<a href="jap_maumi.html">Sushi Bar Maumi</a>
<a href="jap_masayoshi.html">Masayoshi</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Italian</button>
<div class="dropdown-content">
<a href="ita_labuca.html">La Buca</a>
<a href="ita_marcello.html">Marcello Ristorante & Pizzeria</a>
<a href="ita_via.html">Via Tevere Pizzeria</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Vietnamese</button>
<div class="dropdown-content">
<a href="vie_hoang.html">Bun Cha Ca Hoang Yen</a>
<a href="vie_lemongrass.html">Green Lemongrass</a>
<a href="vie_red.html">Mr Red Cafe</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">French</button>
<div class="dropdown-content">
<a href="fr_linh.html">Linh Cafe</a>
<a href="fr_absinthe.html">Absinthe Bistro</a>
<a href="fr_aucomptoir.html">Au Comptoir</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Thai</button>
<div class="dropdown-content">
<a href="thai_unchai.html">Unchai Restaurant</a>
<a href="thai_sen.html">Sen Pad Thai</a>
<a href="thai_maenam.html">Maenam</a>
</div>
</div>
<div class="dropdown">
<a href="contact.html" class="dropbtn">Contact Us</a>
</div>
</nav>
<section class="leftnav_sitemap">
<h3>Site Map</h3>
</section>
<section class="main_frame">
<table>
<tr>
<td><a href="index.html">Home</a></td>
<td colspan="5">Cuisines</td>
<td><a href="contact.html">Contact Us</a></td>
</tr>
<tr>
<td></td>
<td>Japanese</td>
<td>Italian</td>
<td>Vietnamese</td>
<td>French</td>
<td>Thai</td>
<td></td>
</tr>
<tr>
<td></td>
<td><a href="jap_tetsu.html">Tetsu</a></td>
<td><a href="ita_labuca.html">La Buca</a></td>
<td><a href="vie_hoang.html">Hoang Yan</a></td>
<td><a href="fr_linh.html">Linh Cafe</a></td>
<td><a href="thai_unchai.html">Unchai</a></td>
<td></td>
</tr>
<tr>
<td></td>
<td><a href="jap_maumi.html">Maumi</a></td>
<td><a href="ita_marcello.html">Marcello</a></td>
<td><a href="vie_lemongrass.html">Green Lemongrass</a></td>
<td><a href="fr_absinthe.html">Absinthe Bistro</a></td>
<td><a href="thai_sen.html">Sen Pad Thai</a></td>
<td></td>
</tr>
<tr>
<td></td>
<td><a href="jap_masayoshi.html">Masayoshi</a></td>
<td><a href="ita_via.html">Via Tevere</a></td>
<td><a href="vie_red.html">Mr Red Cafe</a></td>
<td><a href="fr_aucomptoir.html">Au Comptoir</a></td>
<td><a href="thai_maenam.html">Maenam</a></td>
<td></td>
</tr>
</table>
</section>
<footer>
<div class="footerleft">
© 2020 Clara Fok for Comp 1850
</div>
<div class="footerright">
<ul>
<li><a href="sitemap.html">Site map</a></li>
<li><a href="https://twitter.com/explore" target="_blank">Twitter</a></li>
<li><a href="https://www.facebook.com/" target="_blank">Facebook</a></li>
<li><a href="mailto:[email protected]" target="_blank">My Email</a></li>
</ul>
</div>
</footer>
</body>
</html>