-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoti.html
44 lines (33 loc) · 1.01 KB
/
noti.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
<!DOCTYPE html>
<html>
<!-- Head -->
<head>
<!-- Meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Links to CSS -->
<link rel="stylesheet" href="styles/main.css">
<!-- Title -->
<title>UniHack2023</title>
<link rel = "shortcut icon" type ="image/png" href ="images/MindfulLogo.png">
</head>
<!-- Body -->
<body>
<!-- Nav Bar -->
<nav class="navbar">
<!-- NAVIGATION MENU -->
<ul class="nav-links">
<!-- NAVIGATION MENUS -->
<div class="menu">
<li><a href="main.html">Home</a></li>
</div>
</ul>
</nav>
<!-- Other elements of the body -->
<div>
<button onclick="playNoise()">Click to Noise</button>
</div>
</body>
<!-- Links to JS -->
<script src="scripts/noti.js">
</script>
</html>