-
Notifications
You must be signed in to change notification settings - Fork 0
/
ct_contact.html
46 lines (36 loc) · 1.06 KB
/
ct_contact.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
<!doctype html>
<html>
<head>
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Tutorial Case
Curbside Thai Contact Information
Author: Alejandro Enriquez
Date: 1/4/2019
Filename: ct_contact.html
<meta charset="utf-8" />
<title>Contacting Curbside Thai</title>
<link href="ct_base.css" rel="stylesheet" />
<link href="ct_layout2.css" rel="stylesheet" />
</head>
<body>
<header class="logo">
<img src="ct_logo2.png" alt="Curbside Thai" />
</header>
<article>
<h1>Contact Us</h1>
<p>Contact Curbside Thai for your next event or just to find
out when our mobile truck will next be in your area.
Employment opportunities available now!</p>
<address> Curbside Thai <br/>
411 Belde Drive <br/>
Charlotte NC 28201
</address>
<p>Call: (704) 555-1151</p>
<p>Email: [email protected]</p>
</article>
<footer>
Curbside Thai • 411 Belde Drive, Charlotte NC 28201 • 704-555-1151
</footer>
</body>
</html>