-
Notifications
You must be signed in to change notification settings - Fork 1
/
instructions.html
66 lines (61 loc) · 1.5 KB
/
instructions.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
<head>
<link
href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:400,700"
rel="stylesheet"
/>
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Kuis 8nilai</title>
<link rel="icon" type="x-icon" href="icon.png" />
<link rel="shortcut icon" type="x-icon" href="icon.png" />
<meta charset="utf-8" />
</head>
<body>
<h1>8nilai</h1>
<hr />
<h2 style="text-align: center">Instruksi</h2>
<p class="question">
Kamu akan disajikan sejumlah pernyataan yang masing-masing nya dapat dipilih
(setuju sampai tidak setuju) dengan mengklik tombol yang sesuai dengan
pendapatmu.
</p>
<button class="button" onclick="location.href='quiz.html';">
Ayo mulai!
</button>
<br />
<button class="button disagree" onclick="location.href='index.html';">
Kembali
</button>
<br />
<footer>
Re-design by <a href="https://github.com/nomadkode">nomadkode</a>
</footer>
<!--* GSAP Library-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js"></script>
<script>
// GSAP Script
gsap.from('h1, h2', {
duration: 1.5,
delay: 0.5,
y: -200,
opacity: 0,
});
gsap.from('button', {
duration: 1.5,
delay: 1,
x: -200,
opacity: 0,
});
gsap.from('.question', {
duration: 1.5,
delay: 1.5,
x: 200,
opacity: 0,
});
gsap.from('footer', {
duration: 1.5,
delay: 2,
y: 200,
opacity: 0,
});
</script>
</body>