-
Notifications
You must be signed in to change notification settings - Fork 0
/
pets.html
105 lines (99 loc) · 4.41 KB
/
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
<!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" type="text/css" href="main.css">
<link rel="icon" type="image/png" href="picture/icons/icons8-cat-footprint-16.png">
<link href="https://fonts.googleapis.com/css?family=Georgia&display=swap" rel="stylesheet">
<title>Shelter</title>
</head>
<body class="pet-web">
<header class="head-pets">
<div class="header-pets">
<div class="title-logo">
<h3 class="logo">Cozy House</h3>
<p class="logo-text">Shelter for pets in Boston</p>
</div>
<ul class="menu-main">
<li><a href="index.html" class="current">About the shelter</a></li>
<li><a href="pets.html">Our pets</a></li>
<li><a href="index.html">Help the shelter</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
</div>
</header>
<div class="pets">
<h3>Our friends who are looking for a house</h3>
<div class="cards-container">
<div class="pets-content" id="pets">
<div class="slider-item"><img src="picture/pets_jennifer.png" alt="Avatar">
<div class="container">
<h4><b>Katrine</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
<div class="slider-item"><img src="picture/pets_katrine.png" alt="Avatar">
<div class="container">
<h4><b>Katrine</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
<div class="slider-item"><img src="picture/pets_woody.png" alt="Avatar">
<div class="container">
<h4><b>Woody</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
<div class="slider-item"><img src="picture/pets-timmy.png" alt="Avatar">
<div class="container">
<h4><b>Timmy</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
<div class="slider-item"><img src="picture/pets-charly.png" alt="Avatar">
<div class="container">
<h4><b>Charly</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
<div class="slider-item"><img src="picture/pets-katrine.png" alt="Avatar">
<div class="container">
<h4><b>Sophia</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
<div class="slider-item"><img src="picture/pets-scarlet.png" alt="Avatar">
<div class="container">
<h4><b>Scarlet</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
<div class="slider-item"><img src="picture/pets-katrine (1).png" alt="Avatar">
<div class="container">
<h4><b>Freddie</b></h4><button class="learn-more">Learn more</button>
</div>
</div>
</div>
</div>
</div>
<footer id="contact">
<div class="contact-">
<h3>For questions <br>and suggestions</h3>
<div class="mail"><img src="picture/icons/mail.svg">
<p>email@shelter.com</p>
</div>
<div class="phone"><img src="picture/icons/phone.svg">
<p>+13 674 567 75 54</p>
</div>
</div>
<div class="locstion">
<h3>We are waiting <br>for your visit</h3>
<div class="london"><img src="picture/icons/pin.svg">
<p>18 South Park,
London </p>
</div>
<div class="boston"><img src="picture/icons/pin.svg">
<p>1 Central Street,
Boston (entrance from the store)</p>
</div>
</div>
<img src="picture/footer-puppy.png" alt="puppy" id="footer-puppy">
</footer>
<img src="picture/footer-puppy.png" alt="puppy" id="footer-puppy2">
</body>
</html>