-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Alternate Register of Care</title>
<link rel="icon" href="img/icon.jpg">
<link rel="stylesheet" type="text/css" href="css/paramedic portal.css">
<script src="myscripts.js"></script>
<style type="text/css">
.banner
{position: relative; top: 0;left: 0; }
.button1
{position: absolute; top: 15px; left: 10px;}
.button2
{position: absolute;top: 15px; left: 320px;}
</style>
<!-- Start cut paste for Nav bar
https://www.w3schools.com/howto/howto_js_mobile_navbar.asp
-->
<!-- Load an icon library to show a hamburger menu (bars) on small screens -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Top Navigation Menu -->
<div class="topnav">
<a href="#home" class="active">Logo</a>
<!-- Navigation links (hidden by default) -->
<div id="myLinks">
<a href="#news">News</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- end cut paste for Nav bar -->
<header>
<img src="img/checker.jpg" class="banner"/>
<img src="img/hamburger_small.png" alt="Menu" align="left" class="button1"/>
<img src="img/cog_small.png" alt="Settings" align="right" class="button2"/>
</header>
</head>
<body>
</body>
</html>