-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (131 loc) · 4.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!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>Animal Adoption Center</title>
<!--Google Font-->
<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=Barlow+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,400;1,500;1,600&family=Bungee&display=swap" rel="stylesheet">
<!--Font Awesome & style sheet-->
<link rel="stylesheet" href="/src/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<script defer src="./src/animal.js"></script>
</head>
<body id="home-page">
<!-- Navbar -->
<nav>
<div class="nav-container container">
<h1 class="nav-logo" style="font-size: 1.15em;">
<a href="../index.html">
Animal <i class="fas fa-heart logo-heart"></i>
<br>
Adoption Center
</a>
</h1>
<!-- Mobile menu-->
<div id="mobile-menu">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-list">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./src/adopt.html">Adopt</a>
</li>
<li>
<a href="./src/support.html">Support</a>
</li>
<li>
<a href="#0"><i class="fas fa-paw"></i></a>
</li>
</ul>
</div>
</nav>
<!--Banner-->
<heading class="banner banner-home">
<div class="banner-space">
<h1 class="banner-heading">
Find Yourself
<br>
a true friend
</h1>
<a href="./src/adopt.html">
<button class="btn btn-alt" >
Adopt today
</button>
</a>
</div>
</heading>
<section class="">
<div class="container">
<h2 class="text-center">
Building a more compassionate community for
</h2>
<h1 class="h1-accent text-center">
Pets and People
</h1>
<p class="text-center section-text">
We care for over 10,000 animals a year and work with other animal welfare organizations to find their forever home.
</p>
</div>
</section>
<section class="theme-grey owner-adopt">
<div class="container">
<h2 class="section-heading text-center">
Change their lives and yours
</h2>
<div class="split pet-showcase">
<div>
<img src="../img/adopt-1.jpg" alt="woman with pug">
</div>
<div>
<img src="../img/adopt-3.jpg" alt="puppy in owners arms">
</div>
<div>
<img src="../img/adopt-2.jpg" alt="man hugging a dog">
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="text-center">
<h2>
Your support means the world to our organization and our pets.
</h2>
<button class="btn btn-alt">
<i class="fas fa-heart"></i>
Donate Today
</button>
</div>
<div class="footer-media">
<div class="company-logo">
<i class="fas fa-paw"></i>
Animal Adoption Center
</div>
<div class="media-tray">
<a href="#0" class="media-tray-items">
<i class="fab fa-twitter-square fa-2x" ></i>
</a>
<a href="#0" class="media-tray-items">
<i class="fab fa-facebook-square fa-2x"></i>
</a>
<a href="#0" class="media-tray-items">
<i class="fab fa-instagram-square fa-2x"></i>
</a>
</div>
</div>
<p class="text-center">
2020-2021 Copyright Animal Adoption, Inc. All rights NOT reserved.
</p>
</div>
</footer>
</body>
</html>