-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (97 loc) · 3.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- header -->
<header></header>
<!-- main -->
<main>
<h1>Questo è il titolo h1</h1> <!-- h1 deve essere solo uno, è il titolo mostrato su google, se non è così google declassifica -->
<h2>Questo è il titolo h1</h2>
<h3>Questo è il titolo h1</h3>
<h4>Questo è il titolo h1</h4>
<h5>Questo è il titolo h1</h5>
<h6>Questo è il titolo h1</h6>
<!-- Sezione con un paragrafo -->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit et quisquam natus saepe provident, magnam ut, libero dolore esse facilis obcaecati. Ipsum eaque magni consectetur! Corrupti, inventore. Voluptatum, odio nostrum.</p>
<!-- Le liste ul e ol devono avere soltanto li come figli diretti -->
<!-- Lista ordinata -->
<h3>Insegnanti</h3>
<ol>
<li>
<h4>Coordinatore:</h4>
<p>Adriano</p>
</li>
<li>Olga</li>
<li>Mauro</li>
<li>Marco</li>
</ol>
<!-- Lista non ordinata -->
<h3>Studenti</h3>
<ul>
<li>Alberto</li>
<li>Alessandro</li>
<li>Anatolie</li>
<li>Alberto</li>
</ul>
<hr>
<strong>Ciao sono un testo importante</strong><br>
<em>Ciao sono un testo in corsivo</em><br>
<button>Questo è un bottone</button>
<section>
<div>
<h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit et quisquam natus saepe provident, magnam ut, libero dolore esse facilis obcaecati. Ipsum eaque magni consectetur! Corrupti, inventore. Voluptatum, odio nostrum.</p>
</h2>
</div>
</section>
<section>
<div>
<h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit et quisquam natus saepe provident, magnam ut, libero dolore esse facilis obcaecati. Ipsum eaque magni consectetur! Corrupti, inventore. Voluptatum, odio nostrum.</p>
</h2>
</div>
</section>
<div>
<img src="img/vette-italia.webp" alt="Immagine delle montagne">
</div>
<table>
<thead>
<tr>
<th>Titolo 1</th>
<th>Titolo 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Riga 1 - 1</td>
<td>Riga 1 - 2</td>
</tr>
<tr>
<td>Riga 2 - 1</td>
<td>Riga 2 - 2</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">Footer 1</td>
</tr>
</tfoot>
</table>
<section>
<p>Il tag <img> è self closing</p>
</section>
</main>
<!-- footer -->
<footer>
<a href="https://www.w3schools.com"
target="_blank">Visita w3schools per maggiori informazioni</a>
<p>Made with ♥ by Andrea</p>
</footer>
</body>
</html>