forked from brandonviorato/SDEV305-Team-G
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (74 loc) · 4.45 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="styles.css">
<title>Team Gnocchi Homepage</title>
</head>
<body data-bs-theme="dark">
<!-- Navbar -->
<header class="site-navigation">
<div class="container">
<nav class="navbar bg-dark navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><img src="./img/gnocchi.png" style="height: 45px;"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Practice</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Sprints
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="./sprint1/dashboard.html">Sprint #1</a></li>
<li><a class="dropdown-item" href="./sprint2/dashboard.html">Sprint #2</a></li>
<li><a class="dropdown-item" href="#">Sprint #3</a></li>
<li><a class="dropdown-item" href="#">Sprint #4</a></li>
<li><a class="dropdown-item" href="#">Sprint #5</a></li>
<li><a class="dropdown-item" href="#">Sprint #6</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<main class="site-content">
<div class="container">
<br>
<p class="fs-1 text-center site-title">Team Gnocchi</p>
<hr>
<p class="fs-6 team-agreement">
<span class="fw-medium text-decoration-underline">Team agreement:</span>
We will meet tuesdays after class. We strive for an A. GitHub will be the base of our operation.
Email and Discord group chat is how we will communicate.
</p>
<p class="fs-6 github-link">
<span class="fw-medium text-decoration-underline">GitHub:</span>
<a href="https://github.com/brandonviorato/SDEV305-Team-G" target="_blank">https://github.com/brandonviorato/SDEV305-Team-G</a>
</p>
</div>
</main>
<!-- Required JavaScript -->
<!-- Popper.js, then Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
</body>
</html>