-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HyperType</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./assets/logo2.png" type="image/png">
</head>
<body class="dark-mode">
<header class="main-header">
<div class="title-container">
<img src="./assets/logo2.png" alt="HyperType Icon" class="title-icon">
<h1 class="main-title">HyperType</h1>
</div>
<p class="tagline">Improve your typing skills with speed and accuracy</p>
</header>
<div class="container">
<header>
<div class="theme-toggle">
<span id="theme-mode" class="theme-text">Dark</span> <!-- Default to "Dark" since dark mode is default -->
<input type="checkbox" id="theme-switch">
<label for="theme-switch" class="toggle-label">
<span class="toggle-ball"></span>
</label>
</div>
<p id="high-score" class="high-score">High Score: 0 WPM</p>
</header>
<main>
<p id="countdown" class="countdown">Round 1 of 10</p>
<div class="sentence-box">
<p id="sentence" class="sentence">Press "Start" to begin!</p>
</div>
<textarea id="input" class="input-box" placeholder="Type here..." disabled></textarea>
<div class="results">
<p id="wpm" class="wpm">WPM: 0</p>
<p id="accuracy" class="accuracy">Accuracy: 0%</p>
</div>
<div class="game-buttons">
<button id="start-btn" class="action-btn">Start</button>
<button id="next-round-btn" class="action-btn" style="display: none;">Next Round</button>
<button id="quit-btn" class="action-btn" style="display: none;">Quit Game</button>
</div>
</main>
</div>
<script src="script.js"></script>
<footer class="page-footer">
<p>Developed by Vishnu Nair |</p>
<div class="footer-icons">
<a href="https://www.linkedin.com/in/vishnu-nair2766/" target="_blank">
<img src="./assets/linkedin.png" alt="LinkedIn" class="footer-logo">
</a>
<a href="https://github.com/vishnusn77" target="_blank">
<img src="./assets/github.png" alt="GitHub" class="footer-logo">
</a>
</div>
</footer>
</body>
</html>