-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathct_locations_Fatonie.html
55 lines (50 loc) · 1.5 KB
/
ct_locations_Fatonie.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
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case
Curbside Thai Locations
Author: Fatonie, Muhammad
Date: September 8, 2020
Filename: ct_locations.html
-->
<meta charset="utf-8" />
<title>Locations of the Curbside Thai Truck</title>
<link href="ct_base.css" rel="stylesheet" />
<link href="ct_layout2.css" rel="stylesheet" />
</head>
<body>
<header>
<a href="ct_start_Fatonie.html"><img src="ct_logo2.png" alt="Curbside Thai"/></a>
<nav>
<ul>
<li><a href="ct_about_Fatonie.html">About</a></li>
<li><a href="ct_locations_Fatonie.html">Locations</a></li>
<li><a href="ct_menu_Fatonie.html">Menu</a></li>
<li><a href="ct_reviews_Fatonie.html">Reviews</a></li>
<li><a href="ct_catering_Fatonie.html">Catering</a></li>
<li><a href="ct_contact_Fatonie.html">Contact</a></li>
</ul>
</nav>
</header>
<article>
<h1>Today's Locations</h1>
<img src="ct_map.png" alt="" />
<dl id="ct_locations">
<dt>11 a.m. to 2 p.m.</dt>
<dl>205 West 3rd Street, Charlotte, NC</dl>
<dt>2 p.m. to 4 p.m.</dt>
<dl>443 West 2nd Street, Charlotte, NC</dl>
<dt>4 p.m. to 8 p.m.</dt>
<dl>900 South Mint Street, Charlotte, NC</dl>
<dt>8 p.m. to 11 p.m.</dt>
<dl>168 North Church Street, Charlotte, NC</dl>
</dl>
</article>
<footer>
Curbside Thai • 411 Belde Drive, Charlotte NC 28201 • 704-555-1151
</footer>
</body>
</html>