-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
50 lines (45 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/styles/style.css" />
<title>CODE HACKS</title>
</head>
<body>
<!-- HEADER START -->
<header>
<div class="leftHead">
<h2>CUBE <span class="headTittlePart">HACKS I</span></h2>
</div>
<div class="rightHead">
<ul>
<li><a style="color: white;" href="index.html">HOME</a></li>
<li><a href="schedule.html">SCHEDULE</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="judges.html">JUDGES</a></li>
<li><button onclick="myShow()" class="menuIcon"><i class="fas fa-bars "></i></button></li>
</ul>
</div>
</header>
<section class="responsiveMenu" id="menuBtn">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="schedule.html">SCHEDULE</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="judges.html">JUDGES</a></li>
</ul>
</section>
<!-- HEADER END -->
<!-- FOOTER START -->
<!-- FOOTER END -->
<script src="https://kit.fontawesome.com/c4b7891002.js" crossorigin="anonymous"></script>
<script>
function myShow() {
var menuButton = document.getElementById("menuBtn");
menuButton.classList.toggle("showMenu");
}
</script>
</body>
</html>