-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Homepage</title>
</head>
<body>
<header>
<nav>
<a href = "">Skip to Main Content</a>
<ul>
<li>Home</li>
<li><a href = "pets.html">Pets</a></li>
<li><a href = "recipes.html">Recipes</a></li>
<li><a href = "travel.html">Travel</a></li>
</ul>
</nav>
<h1>Homepage</h1>
</header>
<main>
<div>
<p>Welcome to your go-to destination for all things pets, recipes, and travel! Explore a world of captivating content where we cater to your love for furry companions, culinary delights, and globetrotting adventures. </p>
<p>To start, choose a link below.</p>
</div>
<div><h2>Links</h2>
<p><a href = "pets.html">Pets</a> <a href = "recipes.html">Recipes</a> <a href = "travel.html">Travel</a></p></div>
<!-- Jackie Wolf -->
</main>
</body>
</html>