-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpskart.html
68 lines (50 loc) · 2.13 KB
/
gpskart.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
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Kart</title>
<style>
h3{
text-align: center;
}
</style>
</head>
<body>
<div id="mainContainer">
<!--NY HEADER MED SØK (husk stylesheet for font awesome-->
<div id="head" class="headerTop">
<a href="gpskart.html">
<i class="fa fa-map-marker" aria-hidden="true" style="position: absolute; color: #ffffff; font-size: 26px; padding-top: 33px; margin-left: 260px; width: 20px; float: right; z-index: 98;"></i>
</a>
<form style="padding-top: 30px; float: right">
<input type="search" placeholder="Search" style="position: relative; z-index: 99;">
</form>
<!--PIL TILBAKE-->
<a onclick="goBack()">
<i class="fa fa-angle-left" aria-hidden="true" style="position: absolute; color: #ffffff; font-size: 24px; padding-top: 33px; padding-left: 10px; width: 20px; float: left; z-index: 2;"></i>
</a>
<!--END PIL TILBAKE-->
<img src="img/finnLogo.png" class="finnLogo" style="position: absolute; padding-left: 125px; z-index: 1;">
</div>
<!--END NY HEADER MED SOK-->
<div id="mainContent">
<i class="fa fa-map-marker gpskartIcon" aria-hidden="true" style="position: absolute; font-size: 26px; padding-top: 33px; width: 20px; float: right; z-index: 98;"></i>
<img id="gpskart" src="img/gpskart.jpg" alt="Kart">
</div>
<div id="foot">
<a href="index.html"><img class="navIcons" src="img/hjem_nav.png"></a>
<a href="sisteNytt.html"><img class="navIcons" src="img/sisteNytt_nav.png"></a>
<a href="minFinn.html"><img class="navIcons" src="img/minFinn_nav.png"></a>
<a href="nyAnnonse.html"><img class="navIcons" src="img/nyAnnonse_nav.png"></a>
</div>
</div>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>