generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsuccess.html
79 lines (74 loc) · 3.11 KB
/
success.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
<!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/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>You're signed up!</h1>
<p>Why not head over to the Two Dogs' gallery and take a look at some silly dog pics?</p>
<a href="gallery.html" class="btn btn-orange">Take me to the puppies!</a>
</section>
<div id="meet">
<div class="two-col">
<iframe src="https://www.youtube.com/embed/OeGYIP64J2E" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<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>