-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Motivational Modal</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="frame">
<div class="card active">
<div class="number-bg"></div>
<div class="number">1</div>
<div class="text">
<span class="headline">Challenge yourself</span>
<p>Success is not final, failure is not fatal: It is the courage to continue that counts.</p>
</div>
<div class="button">Ok</div>
</div>
<div class="card">
<div class="number-bg"></div>
<div class="number">2</div>
<div class="text">
<span class="headline">Never give up</span>
<p>Believe you can and you're halfway there.</p>
</div>
<div class="button">Ok</div>
</div>
<div class="card">
<div class="number-bg"></div>
<div class="number">3</div>
<div class="text">
<span class="headline">Dream big</span>
<p>The only limit to our realization of tomorrow will be our doubts of today.</p>
</div>
<div class="button">Ok</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>