-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 1.97 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
<!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-pro</title>
<link
href="https://fonts.googleapis.com/css2?family=Aboreto&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<main class="container-fluid">
<div
class="row main__div vh-100 d-flex align-items-center justify-content-center text-center"
>
<div class="col-10">
<h1 class="my-5">check you typing speed</h1>
<h2 id="msg" class="py-4 my-5 rounded">text will show here</h2>
<textarea
class="p-3 rounded w-100 h-25 my-3"
id="mykeywords"
cols="100"
rows="10"
placeholder="CLICK ON START BUTTON"
></textarea>
<br />
<button id="btn" class="main__btn">Start</button>
</div>
</div>
</main>
<!-- <section class="main__div row">
<div class="center__div col-10">
<h1>check you typing speed</h1>
<h2 id="msg"></h2>
<br />
<textarea
id="mykeywords"
cols="100"
rows="10"
placeholder="CLICK ON START BUTTON"
></textarea>
<br />
<button id="btn" class="main__btn">Start</button>
</div>
</section> -->
<script src="/index.js"></script>
</body>
</html>