-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (99 loc) · 4.58 KB
/
index.html
File metadata and controls
101 lines (99 loc) · 4.58 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TypeRivals</title>
<link rel="stylesheet" href="styles/landingstyle.css">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css" integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ==" crossorigin="anonymous" referrerpolicy="no-referrer" /> -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:wght@100;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="sign-in-modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Sign In</h2>
<form>
<label for="email">Email</label>
<input name="email" placeholder="Enter your email">
<label for="password">Password</label>
<input type="password" name="password" placeholder="Enter your password">
<button>Sign In</button>
</form>
</div>
</div>
<div class="sign-up-modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Create account</h2>
<form>
<label for="email">Email</label>
<input name="email" placeholder="Enter your email">
<label for="username">Username</label>
<input name="username" placeholder="Choose a Username">
<label for="password">Password</label>
<input type="password" name="password" placeholder="Enter a password">
<label for="city">City</label>
<input name="city" placeholder="Enter your city">
<label for="profile-picture">Upload your Profile Picture</label>
<input id = "profile-picture" name="profile-picture" type="file" accept="image/*">
<div class="image-preview"></div>
<button>Create Account</button>
</form>
</div>
</div>
<div class="upper">
<div class="logo-and-name">
<img src="icons/keyboard-regular (1).svg" alt="">
<span>TypeRivals</span>
</div>
<div class="wrapper">
<div class="content">
<div class="logo">
<img src="icons/keyboard-regular (1).svg" alt="">
</div>
<div class="tagline">Master the Art of Typing</div>
<div class="paraland">Challenge yourself, compete with others, and become a typing champion. Track your progress and join a community of speed typing enthusiasts.</div>
<div class="btns">
<button class="signup">Register</button>
<button class="signin">Sign In</button>
</div>
</div>
</div>
</div>
<div class="lower">
<div class="content">
<div class="heading">
<h1>Why Choose TypeRivals?</h1>
<p>Everything you need to improve your typing skills and track your progress</p>
</div>
<div class="features">
<div class="feature">
<img src="icons/trophy-solid.svg" alt="">
<h1>Compete & Win</h1>
<p>Join typing contests and climb the global leaderboard</p>
</div>
<div class="feature">
<img src="icons/bullseye-solid.svg" alt="">
<h1>Track Progress</h1>
<p>Monitor your typing speed and accuracy improvements</p>
</div>
<div class="feature">
<img src="icons/clock-regular.svg" alt="">
<h1>Multiple Modes</h1>
<p>Practice with different time limits and difficulty levels</p>
</div>
<div class="feature">
<img src="icons/people-svgrepo-com.svg" alt="">
<h1>Community</h1>
<p>Connect with other typing enthusiasts and share achievements</p>
</div>
</div>
</div>
</div>
<script type="module" src="scripts/firebaseinit.js"></script>
<script type="module" src="scripts/landingpage.js"></script>
</body>
</html>