-
Notifications
You must be signed in to change notification settings - Fork 0
/
Adoptions.html
76 lines (58 loc) · 2.83 KB
/
Adoptions.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="stylesheets/ChezFur.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>Chez Fur</title>
</head>
<body>
<header>
<h1 id="page-title">Chez Fur</h1>
<h3>by Suzy Schaffer</h3>
</header>
<div class="main-nav-container">
<!-- Navigation links -->
<nav class="navcontainer">
<a href="index.html">Home</a>
<a href="index-2.html">Home (NEW)</a>
<a href="menu.html">Menu</a>
<a href="your-hosts.html">Your Hosts</a>
<a href="contact.html">Contact</a>
<a href="Adoptions.html">Adoptions</a>
</nav>
<main>
<!--This is a greeting-->
<h1 id="adoption-title">Adoptions</h1>
<!--Content Paragraph-->
<p id="adoption-text">
Meet our adorable former Chez Fur hosts! These cats were proudly adopted by loving qualified cat
parents. Each of these cats found their forever home and continue to bring joy to their new families!
</p>
<!-- Add six cats images on the page -->
<div class="grid-container">
<!-- Image Source: https://deepdreamgenerator.com/processing/15572827 -->
<img src="images/BrownBLackCatWithButterfly.png" alt="Alumni Cat 1" class="grid-item img1">
<!-- Image Source: https://deepdreamgenerator.com/processing/15572125 -->
<img src="images/NewBrownCatWithBlueBackground.png" alt="Alumni Cat 4" class="grid-item img2">
<!-- Image Source: https://www.pexels.com/photo/close-up-photo-of-cat-sitting-on-grass-1642227/ -->
<img src="images/NewWhiteBrownCat.png" alt="Alumni Cat 5" class="grid-item img5">
<!-- Image Source: https://deepdreamgenerator.com/processing/15572347-->
<img src="images/CatSittingOnThePinkCouch.png" alt="Alumni Cat 6" class="grid-item img6">
<!-- Image Source: https://deepdreamgenerator.com/processing/15656007-->
<img src="images/FewCatsSittingInTheGarden.png" alt="Alumni Cat 2" class="grid-item wide-img">
<!-- Image Source: https://deepdreamgenerator.com/processing/15573114-->
<img src=" images/NewWhiteCatSittingBetweenFlowers.png" alt="Alumni Cat 3" class="grid-item long-img">
</div>
</main>
</div>
<!--Footer for the webpage-->
<footer>
<p>Copyright © 2024 Suzy Schaffer<br>
<a href="mailto:[email protected]">[email protected]</a>
</p>
<p>Today's date is: <span id="current-date"></span></p>
</footer>
<script src="scripts/footerDate.js" defer></script>
</body>
</html>