-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (42 loc) · 1.35 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>BadgerBets - Home</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="ico.png" type="image/x-icon"/>
</head>
<body>
<!-- Header Section -->
<header class="header">
<div class="container">
<h1 class="logo">Badger Bets</h1>
<nav>
<ul class="nav-links">
<li><a href="">Home</a></li>
<li><a href="/BadgerBets/about">About</a></li>
<li><a href="/BadgerBets/contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Main Section -->
<section class="main-section">
<div class="content">
<h2>Welcome to Badger Bets</h2>
<p>Your ultimate platform for managing and tracking rewards for the BadgerBots FRC Season!</p>
<div class="buttons">
<a href="./login" class="btn btn-login">Login</a>
<a href="./signup" class="btn btn-signup">Sign Up</a>
</div>
</div>
</section>
<!-- Footer Section -->
</body>
<footer>
<div class="container">
<p>© 2024 BadgerBets. All rights reserved.</p>
</div>
</footer>
</html>