-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·76 lines (73 loc) · 3.08 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Free Motivational Platitudes</title>
<link rel="stylesheet" href="css/hover-min.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<main>
<header class="title">
<h1>
Pick A Gradient & <br> Receive A Motivational Platitude
</h1>
</header>
<div class="container">
<div id="flexboxchild1" class="flexboxchild child1 hvr-shrink" title="orange-to-teal gradient box">
<p id="quote1" class="quote">
Ambition on fleek
</p>
</div>
<div id="flexboxchild2" class="flexboxchild child2 hvr-shrink" title="slate-to-tan gradient box">
<p id="quote2" class="quote">
I can and I will
</p>
</div>
<div id="flexboxchild3" class="flexboxchild child3 hvr-shrink" title="green-to-yellow gradient box">
<p id="quote3" class="quote">
Start somewhere
</p>
</div>
<div id="flexboxchild4" class="flexboxchild child4 hvr-shrink" title="peach-to-hot pink gradient box">
<p id="quote4" class="quote">
Do epic shit
</p>
</div>
<div id="flexboxchild5" class="flexboxchild child5 hvr-shrink" title="light orange-to-dark orange gradient box">
<p id="quote5" class="quote">
Create Your Own Sunshine
</p>
</div>
<div id="flexboxchild6" class="flexboxchild child6 hvr-shrink" title="lavender-to-baby pink gradient box">
<p id="quote6" class="quote">
Purpose fuels passion
</p>
</div>
<div id="flexboxchild7" class="flexboxchild child7 hvr-shrink" title="blue-to-lilac gradient box">
<p id="quote7" class="quote">
C'est la vie
</p>
</div>
<div id="flexboxchild8" class="flexboxchild child8 hvr-shrink" title="brown-to-light brown gradient box">
<p id="quote8" class="quote">
Don't sell yourself short
</p>
</div>
<div id="flexboxchild9" class="flexboxchild child9 hvr-shrink" title="black-to-slate gradient box">
<p id="quote9" class="quote">
Conquer from within
</p>
</div>
</div>
<footer>
<p>Made with <span role="img" aria-label="heart-symbol">♥</span> by <a href="https://www.ashleighekari.com/
" target="_blank" title="ashleighekari's homepage">@ashleighekari</a>
</p>
</footer>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>