-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (89 loc) · 2.63 KB
/
index.html
File metadata and controls
98 lines (89 loc) · 2.63 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<head>
<script>
FontAwesomeConfig = { autoReplaceSvg: true }
</script>
<script src="https://use.fontawesome.com/releases/v5.0.13/js/all.js"></script>
<link rel="stylesheet" href="typing.css">
<link rel="shortcut icon" href="https://i.ibb.co/CzZnkJQ/MIST-Logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="headBox">
<div class="barsL">
<img src="mccLogoBlack.png" onclick="openCloseBar()" width="70px" alt="MIST-Logo" border="0">
</div>
TYPING COMPETITION
<div class="bars">
<img src="https://i.ibb.co/CzZnkJQ/MIST-Logo.png" onclick="openCloseBar()" width="40px" height="40px" alt="MIST-Logo" border="0">
</div>
</div>
<div class="centerPosition">
<div class="idBox">
ID:
<input type="text" name="ID" id="idBox" placeholder="123456789" size="3px">
</div>
</div>
<div class="centerPosition" style="z-index:-1;margin-bottom:-10px;">
<div class="divBox1">
<div class="divBox2" style="transform:rotateZ(0deg);">
</div>
<div class="divBox2" style="transform:rotateZ(72deg);">
</div>
<div class="divBox2" style="transform:rotateZ(144deg);">
</div>
<div class="divBox2" style="transform:rotateZ(216deg);">
</div>
<div class="divBox2" style="transform:rotateZ(288deg);">
</div>
<div class="divBox3">
</div>
</div>
</div>
<div class="centerPosition">
<div class="showText" id="showText" >
</div>
</div>
<div class="centerPosition">
<textarea id="textBox" rows="1" cols="15" placeholder="Type here..."></textarea>
<div id="startBox">
2:00
</div>
<div id="restart" onclick="textShowing()">
Restart
</div>
<div id="merit">
Rank
</div>
</div>
<div class="centerPosition">
<div id="showWpm">
</div>
</div>
<div class="developer">
Developed by <i>MIST Computer Club</i>
</div>
<div class="moreBox" id="moreBox">
<div class="optionStyle">
Login
</div>
<div class="optionStyle">
Registration
</div>
</div>
<div id="meritShow">
<div id="meritClose">
Rank
<span id="closeButton">
✕
</span>
</div>
<div id="persons">
<div class="meritPerson" style="margin-top:60px;border-bottom:0px;">
</div>
</div>
</div>
</body>
</html>
<script src="typing.js">
</script>