forked from davizeragod/davizeragod.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkey.html
77 lines (73 loc) · 2.34 KB
/
key.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Select Your Language</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/[email protected]/css/flag-icons.min.css">
<link rel="stylesheet" href="css/key.css">
</head>
<body>
<div class="language-container">
<h2>Select Your Language</h2>
<div class="language-option" onclick="setLanguage('pt')">
<span class="fi fi-br"></span> Português
</div>
<div class="language-option" onclick="setLanguage('en')">
<span class="fi fi-us"></span> English
</div>
<div class="language-option" onclick="setLanguage('jp')">
<span class="fi fi-jp"></span> 日本語
</div>
</div>
<div class="guide-container">
<div class="step" id="step1">
<h2 id="step1-text"></h2>
<p id="step1-instruction"></p>
<img></img>
</div>
<div class="step" id="step2">
<h2 id="step2-text"></h2>
<p id="step2-instruction"></p>
<img></img>
</div>
<div class="step" id="step3">
<h2 id="step3-text"></h2>
<p id= "step3-instruction"></p>
<img></img>
</div>
<div class="step" id="step4">
<h2 id="step4-text"></h2>
<p id= "step4-instruction"></p>
<img></img>
</div>
<div class="step" id="step5">
<h2 id="step5-text"></h2>
<p id= "step5-instruction"></p>
<img></img>
</div>
<div class="step" id="step6">
<h2 id="step6-text"></h2>
<p id= "step6-instruction"></p>
<img></img>
</div>
<div class="step" id="step7">
<h2 id="step7-text"></h2>
<p id= "step7-instruction"></p>
<img></img>
</div>
<div class="step" id="step8">
<h2 id="step8-text"></h2>
<p id= "step8-instruction"></p>
<img></img>
</div>
<div class="step" id="step9">
<h2 id="step9-text"></h2>
<p id= "step9-instruction"></p>
<img></img>
</div>
</div>
</div>
<script src="js/key.js"></script>
</body>
</html>