-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·76 lines (49 loc) · 1.3 KB
/
index.html
File metadata and controls
executable file
·76 lines (49 loc) · 1.3 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html> <!-- hello -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TITLE</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<table>
<caption>Nackademins Elit</caption>
<thead>
<tr>
<th scope="col">Namn</th>
<th scope="col">Email </th>
<th scope="col">Skills </th>
<th scope="col">Prefered food </th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4">Datan i tabellen är ett utdrag från Nackademins elit</td>
</tr>
</tfoot>
<tbody>
<tr>
<th scope="row">Arvid</th>
<td>appe@gmail.com </td>
<td>Javascript ninja </td>
<td>Pizza</td>
</tr>
<tr>
<th scope="row">Ivar</th>
<td>ravi@gmail.com </td>
<td>HTML Hacker</td>
<td>Lasagna</td>
</tr>
<tr>
<th scope="row">Alina</th>
<td>ali@gmail.com </td>
<td>CSS guru</td>
<td>Spaghetti</td>
</tr>
</tbody>
</table>
</body>
</html>