-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.82 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 class="no-js" lang="no">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Fnugg App</title>
<meta name="description" content="Fnugg app">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<link rel="stylesheet" href="dist/style.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<main>
<div class="row">
<div class="column">
<form class="search">
<label for="search">Søk skisenter</label>
<input type="text" name="search" list="options" id="search" placeholder="Søk skisenter, f.eks. Hemsedal" />
<!-- <input type="submit" value="Søk" /> -->
</form>
</div>
</div>
<div id="content" class="content">
<div id="welcome" class="welcome">
<a href="http://fnugg.no" target="_blank"><img src="src/assets/img/logo/logo.svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" /></a>
<h1>Velkommen til Fnugg søk</h1>
<p>Søk etter et skisenter!</p>
</div>
</div>
<!-- end content -->
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="dist/app.js"></script>
<script src="src/js/search.js"></script>
<script src="src/js/autocomplete-jqueryui.js"></script>
<!-- <script src="src/js/autocomplete-vanillajs.js"></script> -->
</body>
</html>