-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (78 loc) · 2.15 KB
/
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
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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="viewport"
content="width=device-width, maximum-scale=1.0, min-scale=1.0, initial-scale=1.0"
/>
<title>Center County Air Conditioning</title>
<link rel="stylesheet" type="text/css" href="css/screen_styles.css" />
<link rel="stylesheet" type="text/css" href="css/screen_layout_large.css" />
<link
rel="stylesheet"
type="text/css"
media="only screen and (min-width:50px) and (max-width:500px)"
href="css/screen_layout_small.css"
/>
<link
rel="stylesheet"
type="text/css"
media="only screen and (min-width:501px) and (max-width:800px)"
href="css/screen_layout_medium.css"
/>
</head>
<body>
<div class="page">
<header>
<a class="logo" href="./"></a>
<p class="contact">Call for service (516) 334-4022</p>
</header>
<article>
<h1>Contact Us</h1>
<p>
93 Gardent Street<br />
Westbury, NY 11590-4703
</p>
<table class="tg">
<tr>
<td>Sales</td>
<td><b>(516) 334-4122</b></td>
</tr>
<tr>
<td>Service</td>
<td><b>(516) 334-4022</b></td>
</tr>
<tr>
<td>Parts</td>
<td><b>(516) 334-4510</b></td>
</tr>
</table>
<table class="tg">
<tr>
<td>Monday to Friday</td>
<td>9 am - 6 pm</td>
</tr>
<tr>
<td>Saturday, Sunday</td>
<td>by appointment</td>
</tr>
</table>
<p>
Email us at
<a href="mailto:centercountyac@yahoo.com">centercountyac@yahoo.com</a>
</p>
</article>
<nav>
<a href="company.html">Our Company</a>
<a href="services.html">Services</a>
<a href="carrier.html">Carrier</a>
<a href="contact.html">Contact Us</a>
</nav>
<footer>
© 2025 - All rights reserved - Center County Air Conditioning
Corporation
</footer>
</div>
</body>
</html>