-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.62 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>
<title> Vef Verkefni 2</title>
<script src="vefverk2/js/jquery-1.11.3.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="vefverk2/css/foundation.css">
<link rel="stylesheet" type="text/css" href="vefverk2/css/custom.css">
<meta charset="UTF-8">
</head>
<body>
<div class="header">
<h1 class="roboto">Departós!</h1>
</div>
<div class="row">
<div class="large-12 large-centered columns">
<div class="row">
<div class="large-3 medium-3 small-3 columns">
<input type="button" id="search" value="Ná í gögn" class="small button"/>
</div>
<div class="large-3 medium-3 small-3 columns">
<label id="arrivalsOrDeprature"> Veldu </label>
<input type="radio" name="data" id="arrivals" checked="checked">
<label for="arrivals" class="arrivals">Lendingar</label>
<input type="radio" name="data" id="departures">
<label for="departures" class="depratures">Flugtök</label>
</div>
<div class="large-3 medium-3 small-3 columns end">
<label id="language"> Veldu tungumál </label>
<input type="radio" name="language" id="is" checked="checked"><label for="is">IS</label>
<input type="radio" name="language" id="en"><label for="en">EN</label>
</div>
</div>
</div>
<!-- Tómt því öll gögn eru sótt í apanum -->
<div class="large-12 large-centered">
<table class="table">
<thead class="thead">
</thead>
<tbody class="returned">
</tbody>
</table>
</div>
</div>
<script src="vefverk2/js/javascript.js">
</script>
</body>
</html>