-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
46 lines (37 loc) · 1.36 KB
/
header.html
File metadata and controls
46 lines (37 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/global.css">
<link rel="stylesheet" href="/css/header.css">
<link rel="stylesheet" href="/css/titles.css">
<link rel="stylesheet" href="/css/buttons.css">
<link rel="icon" href="/assets/img/favicon-32x32.png" type="image/x-icon">
<title>MackSun</title>
<script src="./js/const.js" defer></script>
<script src="/js/menuhamburger.js" defer></script>
</head>
<body>
<header class="header">
<button class="menu-hamburger" id="menu_hamburger">
<img src="/assets/img/menu-hambuguer.png" alt="Menu" />
</button>
<nav aria-label="cabecalho">
<ul class="menu">
<a href="/index.html">
<img class="logoMackenzie" src="/assets/img/logoMackenzie.png" alt="LogoMackenzie">
</a>
<li class="home_menuHamburger"><a href="/index.html">Home</a></li>
<li id="wikiActions"></li>
<li><a href="/about.html">About</a></li>
<li><a href="/download-data.html">Download Data</a></li>
<li class="request-access"><a href="/register.html">Request Access</a></li>
<li><a href="/contact-and-support.html">Contact</a></li>
<li class="menu" id="userActions">
</li>
</ul>
</nav>
</header>
</body>
</html>