-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.48 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.48 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
<!DOCTYPE html>
<!--Used VScodes auto fill-->
<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>Adopt a cat today!</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>
<div>
<!--Insert picture from the internet and alt tag for accessability or if if the image doesn't load-->
<img src="https://www.cats.org.uk/media/5305/cat-friends-1.jpg?width=415&height=332" alt="Two cats that are best friends">
<!--another header-->
<h3>Cats are one of the best companions.</h3>
<!--A list-->
<h4>Top 5 reasons to Adopt a cat:</h4>
<ol>
<li>They are the best cudders.</li>
<li>They are silly and playful.</li>
<li>Their purr is healing.</li>
<li>They are so soft!</li>
<li>They are so very cute!</li>
</ol>
<!--Added a paragraph with a link to the adoption page-->
<p>Click on the <a href="adopt.html">adopt</a> link to see what kitties are available for adoption.</p>
</div>
</body>
</html>