-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
52 lines (51 loc) · 1.74 KB
/
contact.html
File metadata and controls
52 lines (51 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!--link to CSS file-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<!--Start with a headline-->
<h1>Contact Us</h1>
<!--Create a shortcut to each page-->
<div class="nav">
<a href="index.html">Home</a>
<a href="adopt.html">Adopt</a>
<a href="contact.html">Contact</a>
</div>
<div class="contact"><!--Make a table of social media-->
<h3>How to talk to us:</h3>
<table>
<tr>
<th>Sites</th>
<th>Links</th>
</tr>
<tr>
<td>Email</td><!--All fake accounts of course-->
<td><a href="#">adoptcats@email.com</a></td>
</tr>
<tr>
<td>Facebook</td>
<td><a href="#">facebook.com/adoptcats</a></td>
</tr>
<tr>
<td>Instagram</td>
<td><a href="#">instagram.com/adoptcats</a></td>
</tr>
</table>
</div>
<div id="bye">
<!--Had to add a cute cat gif somewhere and this one was perfect-->
<img width="400px" src="https://c.tenor.com/Tvd3VKwtse0AAAAM/cat-cute.gif" alt="Gif of a cat kneading the air, looks like he's waving bye">
</div>
<div class="footer">
<p>Please visit us again!</p>
</div>
</div>
</body>
</html>