generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgallery.html
109 lines (104 loc) · 5.77 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en" style="font-size: 16px">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Two Dogs, blog about two rescue dogs">
<meta name="keywords" content="dogs, blog, chinese crested, husky">
<link rel="stylesheet" href="assets/css/global.css">
<link rel="stylesheet" href="assets/css/galleries.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" type="image/x-icon" href="assets/images/two-dogs-favicon.svg">
<title>Two Dogs</title>
</head>
<body>
<header>
<a href="index.html" id="logo">
<span class="logo-icon">Two D<i class="fas fa-paw"></i>gs</span>
</a>
<a href="#main-menu"
id="main-menu-toggle"
class="menu-toggle"
aria-label="Open main menu">
<span class="sr-only">Open main menu</span>
<span class="fa fa-bars" aria-hidden="true"></span>
</a>
<nav id="main-menu" class="main-menu" aria-label="Main menu">
<a href="#main-menu-toggle"
id="main-menu-close"
class="menu-close"
aria-label="Close main menu">
<span class="sr-only">Close main menu</span>
<span class="fa fa-close" aria-hidden="true"></span>
</a>
<ul>
<li><a href="meet.html">meet</a></li>
<li><a href="tails.html">tails</a></li>
<li><a href="gallery.html">gallery</a></li>
<li><a href="sign-up.html">sign up</a></li>
</ul>
</nav>
<a href="#main-menu-toggle"
class="backdrop"
tabindex="-1"
aria-hidden="true" hidden></a>
</header>
<section id="page-title">
<h1>See how they run</h1>
</section>
<div id="gallery">
<img src="assets/images/blog/jim_husky_selfie.jpg" alt="Jim the husky in a selfie pose">
<img src="assets/images/gallery/dog_plant_chair.jpg" alt="Dog sitting on chair beside a plant">
<img src="assets/images/dogs_in_accidental_rennaissance.jpg" alt="Two dogs posing in an accidental renaissance pose">
<img src="assets/images/dogs_snuggled_blanket.jpg" alt="Two dogs snuggled on a blanket together">
<img src="assets/images/gallery/dogs_walking_beach.jpg" alt="Group of dogs and man walk on wet beach">
<img src="assets/images/gallery/dogs_walking_track.jpg" alt="Group of dogs and man walk on grassy trail">
<img src="assets/images/gallery/cresty_sun_lounger.jpg" alt="Eric lying on a bench enjoying the sun">
<img src="assets/images/gallery/eric_chinese_crested.jpg" alt="Eric the hairless Chinese crested dog">
<img src="assets/images/gallery/eric_onesie.jpg" alt="Eric the cresty wearing a onesie">
<img src="assets/images/gallery/husky_big_ears.jpg" alt="Jim the husky shows off his big german shephard ears">
<img src="assets/images/gallery/husky_big_eyes.jpg" alt="Jim the husky stares into the camera with his big eyes">
<img src="assets/images/gallery/cresty_messed_hair.jpg" alt="Eric lookngi at the camera with messy hair">
<img src="assets/images/small_dog_small_chair.jpg" alt="A small dog lying in a small chair">
<img src="assets/images/gallery/jim_husky_standing.jpg" alt="Husky standing on his back legs, pictured from behind">
<img src="assets/images/gallery/husky_pup.jpg" alt="Jim the husky german shephard as a puppy">
<img src="assets/images/gallery/husky_snow.jpg" alt="Jim the husky playing in the snow">
<img src="assets/images/gallery/husky_sun_lounger.jpg" alt="Jim the husky lounging in the sun">
<img src="assets/images/gallery/chinese_crested_wearing_hawaiian_shirt.jpg" alt="Eric the small cresty wearing a Hawaiian shirtn">
<img src="assets/images/gallery/jim_eric_dogs.jpg" alt="Jim and Eric, the two dogs">
<img src="assets/images/gallery/jim_husky_cross.jpg" alt="Jim the husky german shephard crss breed dog">
<img src="assets/images/gallery/small_dog_looking_at_camera.jpg" alt="Small dog looks into camera">
<img src="assets/images/gallery/small_dog_on_lead.jpg" alt="Small dog walking on a beack on a lead">
<img src="assets/images/gallery/snoozing_cresty.jpg" alt="Sleeping cresty dog">
<img src="assets/images/gallery/two_chinese_crested_sun.jpg" alt="Two chinese crested dogs sleeping in the sun">
<img src="assets/images/gallery/two_dogs_snuggled_chair.jpg" alt="Two dogs snuggled together on a chair">
</div>
<div class="return-options">
<div class="hyper-link"><a href="#page-title">Back to top <i class="fas fa-arrow-up"></i></a></div>
</div>
<section id="sign-up-banner">
<div class="two-col">
<h3>Sign up to our blog, Tails of Two Dogs</h3>
<a class="btn btn-maroon" href="sign-up.html">sign up</a>
</div>
</section>
<footer>
<ul class="socials">
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"><i class="fa fa-youtube"></i></a>
</li>
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook"></i></a>
</li>
</ul>
</footer>
<!-- font-awesome script -->
<script src="https://kit.fontawesome.com/1bb627a8c8.js" crossorigin="anonymous"></script>
</body>
</html>