forked from reposing/srt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (76 loc) · 3.36 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Sunrise Racing Team">
<meta name="author" content="Steve Norman">
<meta name="generator" content="Me">
<title>Sunrise Racing Team</title>
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="./css/srt.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-md bg-swedishblue fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="./images/name.png" height="30" alt="Sunrise Racing Team">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item active">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="teams.html">Teams</a>
</li>
<li class="nav-item">
<a class="nav-link" href="coursenotes.html">Course Notes</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-bs-toggle="dropdown" aria-expanded="false">Race Preparation</a>
<ul class="dropdown-menu" aria-labelledby="dropdown01">
<li><a class="dropdown-item" href="firstrace.html">First Race</a></li>
<li><a class="dropdown-item" href="everyrace.html">Every Race</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="resources.html">Resources</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container">
<div class="text-center py-3 px-3">
<img src="./images/logo-white.png" class="img-fluid" alt="Sunrise Racing Team">
<p class="lead mt-4">
Sunrise Racing Team was created by a number of SZR Sunrise riders who wanted to race but most importantly have fun while doing it.
</p>
<p class="lead mt-4">
Where racing is the new recovery ride.
</p>
</div>
</main><!-- /.container -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
</body>
</html>