-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (25 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Typing Speed Test </title>
<!-- External style sheet for this web Application : -->
<link rel="stylesheet" href="Css/typingSpeedTest.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
</head>
<body>
<div class="box">
<div class="childBox">
<h1 id ="header">Welcome To The Typing Speed Test :)</h1>
<h2 id = "header2"></h2>
<div class="message hide">
</div>
<textarea name="textArea" id="textArea" cols="75" rows="8" placeholder="Remember ! Who You Are :) " disabled = "disabled" ></textarea> <br>
<button id="btn" class="btn ">Start</button>
</div>
</div>
</body>
<script src="Script/typingSpeedTest.js"></script>
</html>