-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
43 lines (33 loc) · 949 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="keywords" content="fish, trout, shark, salmon">
<meta name="description" content="We sell the best fish online, guaranteed!">
<title>
Mr Green's Fish Emporium
</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script>
alert("Hello, welcome to my website!");
</script>
</head>
<body>
<div id="contact-us">
<h1>Contact Us</h1>
<p>You can contact Mr Green in various ways..</p>
<div class="contact-method">
<h3>By phone</h3>
<p>391-222-333</p>
</div>
<div class="contact-method">
<h3>By email</h3>
<p>[email protected]</p>
</div>
<div class="contact-method">
<h3>By career bidgeon</h3>
<p>To do this, order your pidgeon at www.mrgreenpidgeon.com</p>
</div>
</div>
</body>
</html>