-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (59 loc) · 2.45 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!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">
<link rel="stylesheet" href="style.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=Bubblegum+Sans&family=Gloria+Hallelujah&family=Montserrat&family=Open+Sans&display=swap" rel="stylesheet">
<title>PetSpace</title>
</head>
<body id="home">
<!-- Container to wrap everything -->
<div id="container">
<!-- Brand of website -->
<header>
<div class="main-header">
<div class="logo">
<img src="/images/paw-logo-4.jpg" alt="PetSpace's Logo">
</div>
<nav class="main-menu">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="petList.html">Find a pet</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav> <!-- End of main nav -->
</div>
</header>
<!-- Main content -->
<main>
<!-- <div class="img-repeat"></div> -->
<h1>Pet<span id="space-font">Space</span></h1>
<hr width="50px" align="left">
<p>Where you'll find the cutest pets ever from shelters, rescues & private owners.</p>
<table align="center">
<caption><h2>Featured pets</h2></caption>
<thead>
<tr>
<th>Max</th>
<th>Cookie</th>
<th>Onyx</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="https://place-puppy.com/300x300" alt="Dog image"></td>
<td><img src="http://placekitten.com/300/300" alt="Cat image"></td>
<td><img src="https://placedog.net/300/300?id=15" alt="Dog image"></td>
</tr>
</tbody>
</table>
</main> <!-- End of main content -->
</div> <!-- End container -->
<!-- Footer info -->
<footer>Made with ❤️ by Shandira <br> © Copyright 2022</footer>
</body>
</html>