-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
64 lines (56 loc) · 1.46 KB
/
index1.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
<!DOCTYPE html>
<html lang="it">
<head>
<!-- Meta dati richiesti -->
<title>Esami</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<header>
<h1>I miei esami</h1>
</header>
<aside>
<p class="sidebar">Questa è la sidebar.</p>
</aside>
<main>
<p>La tabella seguente riassume gli esami che ho sostenuto al <a href="https://www.polito.it" title="Vai al sito del Politecnico">Politecnico di Torino</a>.</p>
<table>
<thead>
<tr>
<th>Data</th>
<th>Esame</th>
<th>Crediti</th>
<th>Voto</th>
<th>Azioni</th>
</tr>
</thead>
<tbody>
<tr>
<td>01/02/2021</td>
<td>Architetture dei sistemi di elaborazione</td>
<td>10</td>
<td>28</td>
<td><button>X</button></td>
</tr>
<tr>
<td>06/02/2021</td>
<td>Data Science e tecnologie per le basi dati</td>
<td>8</td>
<td>26</td>
<td><button>X</button></td>
</tr>
<tr>
<td>15/02/2021</td>
<td>Tecnologie e servizi di rete</td>
<td>6</td>
<td>30L</td>
<td><button>X</button></td>
</tr>
</tbody>
</table>
</main>
<footer>
<p>© 2021 Applicazioni Web I (M-Z)</p>
</footer>
</body>
</html>