-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
67 lines (46 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typing Test Clone</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/keyboard.css">
<link rel="stylesheet" href="style/typingResult.css">
<!-- Vue Js -->
<script src="https://unpkg.com/vue@3"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
</head>
<body>
<div id="app">
<typing-test-result v-show="result_test_component" :score="typing_test_score" :scorelist="typing_chart_score"></typing-test-result>
<typing-keyboard v-show="typing_test_component"></typing-keyboard>
<typing-test-component v-show="typing_test_component" @show-result="showHideComponents"></typing-test-result>
</div>
</body>
<!-- Import Our Data -->
<script src="./data/data.js"></script>
<!-- Import Our App Component -->
<script src="script.js"></script>
<!-- Import Our Component -->
<script src="components/typingTest.js"></script>
<script src="components/keyboard.js"></script>
<script src="components/resultTest.js"></script>
<!-- Mount Our App -->
<script>app.mount("#app")</script>
</html>
<!-- <div class="result-section">
<div class="left-result-section">
<div class="wpm-res">
<span>WPM</span>
<h1>50</h1>
</div>
<div class="time-res">
<span>time</span>
<h1>30s</h1>
</div>
</div>
</div> -->