-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.html
More file actions
143 lines (141 loc) · 4.69 KB
/
nav.html
File metadata and controls
143 lines (141 loc) · 4.69 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>TBH</title>
<link rel="icon" href="tbh-logo.ico" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./css/bootstrap-5.0.2.css" />
<link rel="stylesheet" href="./css/custom-styles.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<!-- JS -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js"
integrity="sha512-2rNj2KJ+D8s1ceNasTIex6z4HWyOnEYLVC3FigGOmyQCZc2eBXKgOxQmo3oKLHyfcj53uz4QMsRCWNbLd32Q1g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/js/bootstrap.min.js"
integrity="sha512-a6ctI6w1kg3J4dSjknHj3aWLEbjitAXAjLDRUxo2wyYmDFRcz2RJuQr5M3Kt8O/TtUSp8n2rAyaXYy1sjoKmrQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-* fixed-top navbar-scrolled">
<a class="navbar-brand" href="./index.html">
<img src="./img/tbh-logo-03.png" width="65" alt="Logo-mark" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="./team.html">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./conduct.html">Conduct</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./sponsorship.html">Sponsorship</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
<li class="nav-item">
<!-- Registration links -->
<!-- <a
class="nav-link nav-registration"
href="https://docs.google.com/forms/d/1Qq0DjzbLaQk0UXh0sdySDql6wM7JuMJrVV4MnWVEbDI/edit"
target="_blank"
rel="noopener noreferrer"
>Registration</a
>
</li>
<li class="nav-item">
<a
class="nav-link nav-registration"
href="https://docs.google.com/forms/d/13nfUbI6Otayy4iW8IZFiB7_GZ7q90EYYH0aE8LQmosM/edit"
target="_blank"
rel="noopener noreferrer"
>Project Idea</a
>
</li> -->
</li>
<li class="nav-item">
<a
class="nav-link nav-icon"
href="https://www.instagram.com/biohackathon.to/"
target="_blank"
>
<span>
<img
src="./img/instagram.png"
class="img-fluid"
width="25"
alt="Link to our Instagram account"
/>
</span>
</a>
</li>
<li class="nav-item">
<a
class="nav-link nav-icon"
href="https://www.linkedin.com/company/toronto-biohackathon/"
target="_blank"
>
<span>
<img
src="./img/linkedin.png"
class="img-fluid"
width="25"
alt="Link to our LinkedIn account"
/>
</span>
</a>
</li>
<li class="nav-item">
<a
class="nav-link nav-icon"
href="https://github.com/hackbio-ca"
target="_blank"
>
<span>
<img
src="./img/github.png"
class="img-fluid"
width="30"
alt="Link to our Github account"
/>
</span>
</a>
</li>
</ul>
</div>
</nav>
<!--<script>
const nav_colour = document.querySelector("#tbh-nav");
window.addEventListener("scroll", () => {
if (window.scrollY >= 56) {
nav_colour.classList.remove("bg-*");
nav_colour.classList.add("navbar-scrolled");
}
})
</script>-->
</body>
</html>