-
Notifications
You must be signed in to change notification settings - Fork 1
/
our-pets.html
108 lines (107 loc) · 3.69 KB
/
our-pets.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="our-pets.css">
<title>Document</title>
</head>
<body>
<header>
<div class="logo">
<img src="assets/logo.png" alt="logo">
<p>Shelter for pets in Boston</p>
</div>
<div class="burger-menu">
<img src="assets/Burger.png" alt="burger-menu">
</div>
<nav class="nav-menu">
<a href="index.html">About the shelter</a>
<a>Our pets</a>
<a href="#help">Help the shelter</a>
<a href="#contacts">Contacts</a>
</nav>
</header>
<section id="pets-list">
<div class="our-pets-content">
<h3>Our friends who <br> are looking for a house</h3>
<div class="our-pets">
<div class="card">
<img src="assets/pets-katrine.png" alt="pets-katrine" width="270" height="270">
<p>Katrine</p>
<button>Learn more</button>
</div>
<div class="card">
<img src="assets/pets-jennifer.png" alt="pets-jennifer" width="270" height="270">
<p>Jennifer</p>
<button>Learn more</button>
</div>
<div class="card">
<img src="assets/pets-woody.png" alt="pets-woody" width="270" height="270">
<p>Woody</p>
<button>Learn more</button>
</div>
<div class="card" id="sophia">
<img src="assets/pets-sophia%20.png" alt="pets-sophia" width="270" height="270">
<p>Sophia</p>
<button>Learn more</button>
</div>
<div class="card" id="timmy">
<img src="assets/pets-timmy.png" alt="pets-timmy" width="270" height="270">
<p>Timmy</p>
<button>Learn more</button>
</div>
<div class="card" id="charly">
<img src="assets/pets-charly.png" alt="pets-charly" width="270" height="270">
<p>Charly</p>
<button>Learn more</button>
</div>
<div class="card" id="scarlett">
<img src="assets/pets-scarlet.png" alt="pets-scarlett" width="270" height="270">
<p>Scarlett</p>
<button>Learn more</button>
</div>
<div class="card" id="freddie">
<img src="assets/pets-freddie.png" alt="pets-freddie" width="270" height="270">
<p>Freddie</p>
<button>Learn more</button>
</div>
</div>
</div>
</section>
<footer id="contacts">
<div class="footer-content">
<div class="info">
<div class="contacts">
<h3>For questions <br> and suggestions</h3>
<div class="contacts-item">
<img src="assets/icon-email.svg" alt="icon-email">
<h4>[email protected]</h4>
</div>
<div class="contacts-item">
<img src="assets/icon-phone.svg" alt="icon-phone">
<h4>+13 674 567 75 54</h4>
</div>
</div>
<div class="locations">
<h3>We are waiting <br> for your visit</h3>
<div class="contacts-item">
<img src="assets/icon-marker.png" alt="icon-marker">
<h4>1 Central Street, Boston <br> (entrance from the store)</h4>
</div>
<div class="contacts-item">
<img src="assets/icon-marker.png" alt="icon-marker">
<h4>18 South Park, London </h4>
</div>
</div>
</div>
<div class="footer-img">
<img src="assets/footer-puppy.png" alt="footer-puppy">
</div>
</div>
</footer>
</body>
</html>