-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
42 lines (39 loc) · 1.71 KB
/
Copy pathheader.html
File metadata and controls
42 lines (39 loc) · 1.71 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
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./CSS/header.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="leftContent">
<div class="logos">
<img src="./logos/NOAA.png">
<img src="./logos/NIDIS.jpeg">
</div>
<div href="" class="logo" style="display: inline;"> <a href="http://hrip.manoa.hawaii.edu/index.html" style="text-decoration: none;display: inline-block;color:black">
Hawaiʻi Rangeland <br> Information Portal</a>
<!-- Remove below div to remove BETA text-->
<span style="font-size: 12px; color: #808080;">BETA</span>
</div>
</div>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="http://hrip.manoa.hawaii.edu/index.html#ranch">Select Ranch</a></li>
<li><a href="http://hrip.manoa.hawaii.edu/about.html">About</a></li>
<!--<li><a href="#links">Links</a></li>-->
<!--<li><a href="http://149.165.159.19/H-RIP/contact.html">Contact</a></li>-->
</ul>
</header>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>