-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>3 Words of Motivation</title>
<link href='https://fonts.googleapis.com/css?family=Kavoon' rel='stylesheet'>
</head>
<link rel="stylesheet" href="./style.css">
<body>
<div class="panels">
<div class="panel panel1">
<p>Against</p>
<p>All</p>
<p>Odds</p>
</div>
<div class="panel panel2">
<p>Change</p>
<p>is</p>
<p>Good</p>
</div>
<div class="panel panel3">
<p>go</p>
<p>for</p>
<p>it</p>
</div>
<div class="panel panel4">
<p>I’ll</p>
<p>Be</p>
<p>There</p>
</div>
<div class="panel panel5">
<p>Never</p>
<p>give</p>
<p>up</p>
</div>
</div>
<div class="container">
<div class="content">
<h2 class="frame-1">Sometimes</h2>
<h2 class="frame-2">We don't need a lot</h2>
<h2 class="frame-3">Just a few simple words</h2>
<h2 class="frame-4">Can make the difference</h2>
<h2 class="frame-5">
<span>Three words of Motivation...</span>
</h2>
</div>
</div>
<audio controls autoplay>
<source src="./audio.mp3" type="audio/mpeg">
</audio>
<script src="./script.js"></script>
</body>
</html>