-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="esercizi progetto terza settimana di corso"
/>
<title>Progetto settimana 3</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="container">
<a href="#">link 1</a>
<table>
<caption>
Titolo tabella
</caption>
<thead>
<tr>
<th>colonna 1</th>
<th>colonna 2</th>
<th>colonna 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>dato 1</td>
<td>dato 2</td>
<td><a href="#">dato 3</a></td>
</tr>
<tr>
<td>dato 4</td>
<td>dato 5</td>
<td>dato 6</td>
</tr>
<tr>
<td>dato 7</td>
<td>dato 8</td>
<td>dato 9</td>
</tr>
</tbody>
</table>
<a href="#">link2</a>
<ul id="myList">
<li>primo elemento</li>
<li>secondo elemento</li>
<li>terzo elemento</li>
<li>quarto elemento</li>
</ul>
</div>
<script src="js/D10.js"></script>
</body>
</html>