-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkshop.html
65 lines (59 loc) · 2.06 KB
/
workshop.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
<!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="workshop.css" class="css" />
<title>Workshop</title>
</head>
<body>
<div class="container">
<!-- Navbar -->
<div class="nav">
<div class="ceslogo">
<a href="index.html">
<img src="images/logo.png" alt="CES HomePage" />
</a>
</div>
<!-- Menu Icon -->
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"
>×</a
>
<div class="overlay-content">
<a href="#" target="_blank"
><img id="ceslogo1" src="images/logo.png" alt="CES HomePage"
/></a>
<a href="teams.html" target="_self">TEAMS</a>
<a href="about.html" target="_self">ABOUT</a>
<a href="events.html" target="_self">EVENTS</a>
<a href="articles.html" target="_self">ARTICLES/BLOGS</a>
<a href="articles.html" target="_self">WORKSHOP</a>
<a href="alumni.html" target="_self">ALUMNI SECTION</a>
<a href="kaizen.html" target="_self">KAIZEN</a>
<a href="contactus.html" target="_self">CONTACT US</a>
</div>
</div>
<div class="menu" onclick="openNav()">
<img
id="menupic"
style="height: 60px; width: 60px; margin: 15px"
src="images/menu black.png"
alt=""
/>
</div>
</div>
</div>
</div>
<!-- Script -->
<script>
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
</script>
</body>
</html>