-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
66 lines (52 loc) · 1.74 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
<!-- Katya Thorup -->
<!-- COMP 20 HW 3 -->
<!-- Due 2/11/2019 -->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>Contact Page</title>
<link rel="stylesheet" type = "text/css" href="format.css" />
<style type="text/css">
.emergency {display: block; box-sizing: border-box; width: 100%; background-color: #F37021; font-size: 25px; text-align: center; margin-top: 0; text-decoration: none;}
.contact-info {display: block; box-sizing: border-box; width: 100%; margin-top: 20px;}
@media (max-width: 600px) {
.emergency {font-size: 20px;}
}
</style>
</head>
<body>
<div class = "header">
<div class = image>
<center>
<img src="logo.jpg" class = "logo">
</center>
</div>
<div class = header-text>
<h1>Thorup Plumbing and Heating</h1>
<p>Contact for a Quote or Additional Information</p>
</div>
</div>
<div class = "page-container">
<div class = "nav">
<a href = index.html>Home</a>
<a href = services.html>Services</a>
<a href = contact.html>Contact</a>
</div>
<div class = "section">
<center><p style = "font-weight: bold; margin-top: 1;">Questions or Comments? We would love to hear from you!</p></center>
<div class = "emergency">
24/7 EMERGENCY SERVICE CALL (508) 240-7738
</div>
<div class = "contact-info">
All Services: Call (508) 237-7738<br/>
Can't Call? Send us an Email: [email protected]
</div>
<div class = "footer">
Website Published <em>February 2020<em>
</div>
</div>
</div>
</body>
</html>