-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (117 loc) · 3.83 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
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Join the RacingBear blog for the ultimate sim racing experience. Get tips, reviews, and insights on the best virtual racing gear and setups."
/>
<link rel="stylesheet" href="/styles/styles.css" />
<link rel="stylesheet" href="/styles/hamburger-menu.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link
href="https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap"
rel="stylesheet"
/>
<title>RacingBear - A Simracers Journey</title>
</head>
<body>
<header>
<a href="/index.html"
><img id="header-logo" src="/images/logo.png" alt="The racing bear logo with Racing bear written"
/></a>
<nav>
<div class="menu-toggle" id="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-menu" id="nav-menu">
<li><a href="/index.html" class="nav-link">Home</a></li>
<li><a href="/about.html" class="nav-link">About</a></li>
<li><a href="/posts.html" class="nav-link">Blog</a></li>
</ul>
<ul id="sign-in" class="nav-menu">
<li>
<a href="/account/register.html" class="nav-link register-profile"
>Sign Up</a
>
</li>
<li>
<a href="/account/login.html" class="nav-link login-logout"
>Log In</a
>
</li>
</ul>
<div class="mobile-menu" id="mobile-menu">
<ul>
<li><a href="/index.html" class="nav-link">Home</a></li>
<li><a href="/about.html" class="nav-link">About</a></li>
<li><a href="/posts.html" class="nav-link">Blog</a></li>
<li>
<a href="/account/register.html" class="nav-link register-profile"
>Sign Up</a
>
</li>
<li>
<a href="/account/login.html" class="nav-link login-logout"
>Log In</a
>
</li>
</ul>
</div>
</nav>
</header>
<main>
<h1 id="hero-header">A Simdrivers Journey</h1>
<img id="hero-picture" src="/images/Mazda_car_1.png" alt="" />
</main>
<footer>
<ul>
<li>
<a href="https://twitch.com"
><img src="/images/twitch.png" alt="Link to Twitch"
/></a>
</li>
<li>
<a href="https://x.com"><img src="/images/TwitterX.png" alt="Link to X (twitter)" /></a>
</li>
<li>
<a href="https://facebook.com"
><img src="/images/FacebookF.png" alt="Link to Facebook"
/></a>
</li>
<li>
<a href="https://youtube.com"
><img src="/images/youtube.png" alt="Link to Youtube "
/></a>
</li>
</ul>
<p>©RacingBear 2025. All rights reserved.</p>
<p>Pictures from Unsplash.com</p>
</p>
<div id="success-modal" class="modal">
<div class="modal-content">
<p id="success-message"></p>
<button id="close-modal">OK</button>
</div>
</div>
<div id="logout-modal" class="modal">
<div class="modal-content">
<p id="logout-message"></p>
<div class="modal-buttons">
<button id="confirm">Yes, Log Out</button>
<button id="cancel">Cancel</button>
</div>
</div>
</div>
</footer>
<script src="/JS/app.js"></script>
</body>
</html>