-
Notifications
You must be signed in to change notification settings - Fork 0
/
find.html
50 lines (41 loc) · 1.6 KB
/
find.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Polisens Händelser - I ett tilltalande format</title>
<link rel="icon" type="image/x-icon" href="./media/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Belanosima:wght@400;700&family=Heebo:wght@100;200;300;400;500;600;800&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:wght@300;400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
<script src="find.js"></script>
</head>
<body>
<div id="container">
<nav id="navbar">
<h1 id="police">Polis</h1>
<p id="events">Händelser</p>
<img id="policeImg" src="./media/police-icon-29952.png" alt="">
<ul id="listLinks">
<li id="siteMenu1"><a href="index.html">Hem</a></li>
<li id="siteMenu2"><a href="find.html">Sök Station</a></li>
<li id="siteMenu3"><a href="cities.html">Cities</a></li>
</ul>
</nav>
<main id="mainFind">
<section id="search-Ps-Section">
<input type="search" name="searchPs" id="search-Ps" placeholder="Sök station..">
<input type="button" value="Hitta" id="btnFindPs">
<input type="button" value="Visa alla" id="showAll">
</section>
<div id="resultStations"></div>
<div id="webStore">
<h2>Senaste sökningar: </h2>
</div>
</main>
</div>
</body>
</html>