-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEZType.html
37 lines (33 loc) · 1.51 KB
/
EZType.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EZType</title>
<link rel="stylesheet" href="static/styles/style.css">
</head>
<body>
<download-timer></download-timer>
<style>
body {
background-image: url('static/images/cloud-normal.png');
}
</style>
<div class="result">
<h1 id="result_of_type">Ваш результат: __ /</h1>
<button class="try_again" onclick="reset()">Сбросить</button>
</div>
<div class="announce">
<h1 class="announce_h1">Проверь свою скорость печати!</h1>
<span class="btn" onclick="minus_ten_time()" id="minus_ten_btn">-<</span>
<span class="btn"onclick="minus_time()" id="minus_btn">-</span>
<span id="timer" class="main_timer">00:00</span>
<span class="btn"onclick="plus_time()" id="plus_btn">+</span>
<span class="btn"onclick="plus_ten_time()" id="plus_ten_btn">>+</span>
</div>
<div class="text-window">
<span id="typed_text" class="EZT_text_typed"></span><span id="current_text" class="EZT_text"></span><span id="type_mark" class="type_mark">|</span><span id="type_text" class="EZT-text">Произошла ошибка!</span><span id="measurement" class="EZT_text_typed" style="visibility:hidden; position:absolute;"></span>
</div>
<script src="script.js"></script>
</body>
</html>