forked from kanlo456/Asm-Web-Adopt-an-animal-web-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Adopt.html
50 lines (42 loc) · 1.66 KB
/
Adopt.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
44
45
46
47
48
49
50
<!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>Adopt</title>
<link rel="stylesheet" href="Adopt.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
</head>
<body>
<section class="header">
<nav>
<a href="Index.html"><img src="image/pet.jpg"></a>
<h1 class="heading">Pet Home</h1>
<div class="nav-links">
<ul class="link">
<li><a href="Index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Adopt.html">Adopt</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
</div>
<div class="subnav"></div>
</nav>
<div class="bgimg">
<div><h2>Please Adopt a pet</h2></div>
<div class="picture">
<a href="dog.html"><img src="image/dog.jpeg" alt="dog"></a>
<div class="content">Adopt a dog</div>
</div>
<div class="picture">
<a href="cat.html"><img src="image/cat.jpg" alt="cat"></a>
<div class="content">Adopt a cat</div>
</div>
</div>
</section>
</body>
</html>