forked from Vikas3126/debug-artisan-2345
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (106 loc) · 3.74 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
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
101
102
103
104
105
106
107
108
109
<!-- landing page -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./frontend/images/Speedster-Photoroom.png-Photoroom.png" type="image/x-icon">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link rel="stylesheet" href="./frontend/styles/index.css" />
<link rel="stylesheet" href="./frontend/styles/nav.res.css" />
<title>Speedster</title>
</head>
<body>
<h1 class="main-heading" onclick="homePage()">
<span>S</span>PEEDSTER<span></span>
</h1>
<nav class="navbar">
<div class="menu-toggle" onclick="toggleMenu()">☰</div>
<button class="race-now">
<span class="material-symbols-outlined"> double_arrow </span> Race Now
</button>
<div class="inner-navbar">
<button id="garage" class="navbar-selected">Home</button>
<button id="shop">Shop</button>
<button id="team">news</button>
<button id="Learnig">Tools</button>
</div>
</nav>
<div class="landing-hero">
<div class="landing-hero-content">
<h1 class="landing-hero-content-heading">
Learn to Type Blazing Fast. The Leader in Typing Games.
</h1>
<p class="landing-hero-content-para">
Improve your typing skills while competing in fast-paced races with up
to 5 players from around the world. Compete against your friends, earn
new cars, track your scores, and so much more... all for free!
</p>
<div class="landing-hero-content-btns">
<div class="landing-hero-content-btns-register">
<button id="reg-btn">Register Now</button>
<p>New Users</p>
</div>
<div class="landing-hero-content-btns-login">
<button id="log-btn">Log In</button>
<p>Have an Account?</p>
</div>
</div>
</div>
<div class="landing-hero-image">
<img src="./frontend/images/race-track.png" alt="race-track" />
</div>
</div>
<div class="landing-latest-news">
<div class="landing-latest-news-heading">
<h1>Latest News</h1>
<button id="view-btn">View More News</button>
</div>
<div class="landing-latest-news-box">
<img src="./frontend/images/latest-news.png" alt="latest-news" />
<div class="landing-latest-news-content">
<p class="landing-latest-news-content-date">
01/28/24 10:44PM By <span>Adrian</span>
</p>
<h2 class="landing-latest-news-content-heading">
Farewell to Top Teams, Hello to (Soon) Leagues!
</h2>
<p class="landing-latest-news-content-para">
Top Teams leaderboard is retiring, but get ready for Leagues - a
new, thrilling way to compete in Nitro Type! Stay tuned!
</p>
<button>Read More</button>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-links">
<ul>
<li>Race</li>
<li>Top Teams</li>
<li>Updates</li>
</ul>
<ul>
<li>News</li>
<li>Support</li>
<li>About Us</li>
</ul>
<ul>
<li>Contact</li>
</ul>
</div>
<div class="footer-address">
<ul>
<li>TERMS OF SERVICE</li>
<li>PRIVACY POLICY</li>
<li>2024 © debug-artisan-2345</li>
</ul>
</div>
<img src="./frontend/images/Speedster-Photoroom.png-Photoroom.png" alt="speedster-logo" />
</footer>
<script src="./frontend/scripts/index.js"></script>
</body>
</html>