-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (44 loc) · 1.38 KB
/
contact.html
File metadata and controls
45 lines (44 loc) · 1.38 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
<!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>
</head>
<body>
<!--Start with a headline-->
<h1>Page 3</h1>
<!--Create a shortcut to each page-->
<div>
<a href="index.html">Home</a>
<a href="adopt.html">Adopt</a>
<a href="contact.html">Contact</a>
</div>
<br>
<div><!--Make a table of social media-->
<h3>Contact 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">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>
<!--Had to add a cute cat gif somewhere and this one was perfect-->
<h3>Visit us again!</h3>
<img src="https://c.tenor.com/Tvd3VKwtse0AAAAM/cat-cute.gif" alt="Gif of a cat kneading the air, looks like he's waving bye">
</div>
</body>
</html>