-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>Tabelle</title>
<style>
html {
font-size: 21px;
font-family: sans-serif;
}
body {
background-color: black;
color: white;
}
table, tr, th, td, caption {
border: 2px solid white;
border-collapse: collapse;
padding: 0.5rem;
}
</style>
</head>
<body>
<h1>Tabelle</h1>
<table>
<caption>Una tabella senza senso</caption>
<thead>
<tr>
<th> </th>
<th scope="col">Tempo</th>
<th scope="col">Parola</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Mattina</th>
<td>
<time datetime="8:00">8:00</time> -
<time datetime="9:00">9:00</time>
</td> <!-- table data, table row-->
<td>Ciao</td>
</tr>
<tr>
<th scope="row">Pomeriggio</th>
<td>
<time datetime="10:00">10:00</time> -
<time datetime="11:00">11:00</time>
</td> <!-- table data, table row-->
<td>Ciao</td>
</tr>
<tr>
<th scope="row">Sera</th>
<td>
<time datetime="12:00">12:00</time> -
<time datetime="13:00">13:00</time>
</td> <!-- table data, table row-->
<td>Ciao</td>
</tr>
<tr>
<th scope="row">Nulla</th>
<td colspan="2">CIAO</td>
</tr>
<tr>
<th scope="row">Niente</th>
<td rowspan="2">ALTRO</td>
<td>Dormo</td>
</tr>
<tr>
<th scope="row">Nulla</th>
<td>Non dormo</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Ciao testo testo testo testo testo testo testo testo testo </td>
</tr>
</tfoot>
</table>
</body>
</html>