-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (27 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tog fra Roskilde station</title>
<link rel="stylesheet" href="css/style.css">
<script type="module" src="js/main.js"></script>
</head>
<body>
<div class="wrapper">
<h1 class="heading"><img class="heading__image" src="images/icons/tog.png" alt="">Roskilde station <span class="heading__muted">Afgange</span></h1>
<table class="departures">
<thead>
<tr class="departures__row">
<th class="departures__header"><b>Tognr.</b><br>Train No.</th>
<th class="departures__header"><b>Tid</b><br>Time</th>
<th class="departures__header"><b>Til</b><br>To</th>
<th class="departures__header"><b>Spor</b><br>Track</th>
<th class="departures__header"><b>Information</b><br>Information</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</body>
</html>