-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 958 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
Hello World!
<div class="w3-container">
<p>The w3-container class is an important w3.CSS class.</p>
</div>
<table class="w3-table">
<tr>
<th>Bjørn Auestad (Instituttleder)</th>
<th>Anders Tranberg (Koordinator for masterprogrammet)</th>
</tr>
<tr>
<td>Eli Drange Vee (Studiekoordinator)</td>
<td>Marianne Udtian (Leder for linjeforeningen Theta)</td>
</tr>
</table>
<div class="w3-row">
<div class="w3-col w3-container w3-green" style="width:20%"><p>20%</p></div>
<div class="w3-col w3-container w3-blue" style="width:60%"><p>60%</p></div>
<div class="w3-col w3-container w3-red" style="width:20%"><p>20%</p></div>
</div>
</body>
</html>