This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.html
40 lines (37 loc) · 2.05 KB
/
header.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
<html>
<head>
<title>COD</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="header.css">
</head>
<body>
<!-- <div class="header">-->
<div class="banner">
<div class="bannertitle">Career Orientation Days</div>
</div>
<div class="menu">
<a href="file://tudelft.net/student-homes/H/dheijbroek/My%20Documents/Functie/MCOD/Website/index.html">Home</a>
<a href="file://tudelft.net/student-homes/H/dheijbroek/My%20Documents/Functie/MCOD/Website/programme.html">Programme</a>
<a href="https://google.com">Companies</a>
<a href="https://google.com">Contact</a>
</div>
<div class="mobile-menu">
<span class="toggle-mobile-menu"><span class="fa fa-bars"></span></span>
<div class="mobile-menu-items">
<a href="file://tudelft.net/student-homes/H/dheijbroek/My%20Documents/Functie/MCOD/Website/index.html">Home</a>
<a href="file://tudelft.net/student-homes/H/dheijbroek/My%20Documents/Functie/MCOD/Website/schedule.html">Programme</a>
<a href="https://google.com">Companies</a>
<a href="https://google.com">Contact</a>
</div>
</div>
<!-- </div>-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript">
$('.toggle-mobile-menu').on('click', function(){
$('.mobile-menu').toggleClass('active');
});
</script>
</body>
</html>