-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact_us.html
More file actions
72 lines (45 loc) · 1.3 KB
/
contact_us.html
File metadata and controls
72 lines (45 loc) · 1.3 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>
<head>
<title>HTML StartUp Website</title>
<link href="home_style.css" rel="stylesheet">
</head>
<body>
<div id="container">
<div id = "header">
<h1> HTML StartUP </h1>
</div> <!-- header -->
<div id = "nav">
<ul>
<a href="index.html"><li> Home </li></a>
<a href="about.html"><li> About </li></a>
<a href="services.html"><li> Services </li></a>
<a href="blog.html"><li> Blog </li></a>
<a href="contact_us.html"><li> Contact Us </li></a>
<div style="clear:both"> </div>
</ul>
</div> <!--navigation -->
<div id="middle">
<div id ="post">
<div class="title"> Contact Us </div>
<div class="description">
Startup News <br>
The Lufkin Daily Startup News <br>
300 Ellis at Herndon <br>
Lufkin, TX 75904-3817 <br>
Mailing address: <br>
P.O. Box 1089 <br>
Lufkin, TX 75902-1089 <br>
Phone numbers: <br>
Main: 936-632-6631 <br>
Fax: 936-632-6655 <br>
Email: [email protected]
</div>
</div> <!-- post -->
</div> <!-- middle -->
<div id="footer">
Copywrite © 2019
</div> <!-- footer -->
</div> <!--container here-->
</body>
</html>