-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rapid Type</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="app.js" defer></script>
</head>
<body>
<h1>Rapid Type</h1>
<div class="wrapper">
<input type="text" class="input-field">
<div class="content-box">
<div class="content">
<ul class="result-details">
<li class="time">
<p>Time Left</p>
<span><b>60</b>s</span>
</li>
<li class="mistake">
<p>Mistakes</p>
<span>0</span>
</li>
<li class="wpm">
<p>WPM</p>
<span>0</span>
</li>
</ul>
<div class="typing-text">
<p id="paragraph"></p>
</div>
</div>
</div>
</div>
<div class="refresh-btn">
<a class="fa fa-rotate-right" style="color:#ff5e82 ;font-size:36px;" href=""></a>
</div>
<div class="socials-container">
<a class="fa fa-github" style="color: #ff5e82;font-size:36px;" href="https://github.com/Divya2163" target="_blank"></a>
<div class="space"></div>
<a class="fa fa-linkedin" style="color: #ff5e82;font-size:36px;" href="https://www.linkedin.com/in/divya-mohan21/" target="_blank"></a>
</div>
</body>
</html>