-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunder18.html
78 lines (74 loc) · 3.35 KB
/
under18.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Materialize Styling-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Font Awesome-->
<script src="https://kit.fontawesome.com/11423f6804.js" crossorigin="anonymous"></script>
<!-- Local Style Sheet -->
<link rel="local stylesheet" href="assets/style.css">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Monoton&family=Quicksand:wght@300;400;500;515;600;700&family=Yellowtail&display=swap"
rel="stylesheet">
<title>Adults Only Pet Finder</title>
</head>
<body class="underage">
<div class="content">
<!-- Navbar w/ logo -->
<nav>
<div class="underage">
<a href="./index.html" class="brand-logo underage">Adults Only Petfinder</a>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m2">
<div class="card hoverable">
<div class="card-content">
<!--Neon Title -->
<div class="container container-title">
<div class="title">
<p class="welcome"><a href="#">
Convince your parents to get a pet!
</a></p>
</div>
</div>
<div class='embed-container'><iframe src='https://www.youtube.com/embed/lRqTZfMEW0s'
frameborder='0' allowfullscreen></iframe></div>
<div class="underage-btns">
<a class="btn-large"
href="https://www.wikihow.com/Convince-Your-Parents-to-Let-You-Have-a-Pet">Written guide
on manipulation.</a>
<a class="btn-large"
href="https://www.humanesocietysav.org/adoption/top-5-reasons-to-adopt/">Top 5 Reasons
to Adopt</a>
<a class="btn-large" href="https://www.petfinder.com/">Find your forever pet</a>
<a class="btn-large" href="https://www.youtube.com/watch?v=A6hrw6KGdtM">Funny pet fails.
Just 'cause.</a>
</div>
</div> <!-- end card content -->
</div> <!-- end card -->
</div> <!-- end container col -->
</div><!-- end container row -->
</div> <!-- end container -->
</div>
<!-- footer -->
<footer class="page-footer grey darken-3">
<div class="footer-copyright">
<div class="container center">
© 2020 Copyright
</div>
</div>
</footer>
<!-- Script Links -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<!-- Materialize.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- Scroll Reveal -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- local script -->
<script src="./assets/script.js"></script>
</body>