-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (73 loc) · 2.06 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>Organizzazione</title>
<meta name="description" content="Come organizzare le pagine in HTML con semantics tags.">
<style>
html {
font-size: 21px;
font-family: sans-serif;
}
body {
background-color: black;
color: white;
}
h1 {
color: fuchsia;
}
a {
color: aqua;
}
</style>
</head>
<body>
<header>
<h1>Organizzazione</h1>
<hr>
<nav aria-label="primary-navigation">
<!-- <nav aria-labelledby="primary-navigation"> -->
<!-- <h2 id="primary-navigation">Primary navigation</h2> -->
<ul>
<a href="#articoli">Articoli</a>
</ul>
<ul>
<a href="google.com">ciao</a>
</ul>
</nav>
<hr>
</header>
<p>nav(navigazione), hr(nuova sezione), h1(title), main, header, footer, section... lo sono. invece il DIV non ha senso serve solo per "dividere" ed è un blocco stessa cosa va per SPAN (si usano in css)</p>
<br>
<main>
<article id="articoli">
<!-- <section id="articoli"> -->
<h2>I nostri articoli:</h2>
<section>
<h3>Gatto che mangia</h3>
<p>È un bravo gatto, che mangia un cibo delizioso... leggi di più</p>
</section>
<section>
<br>
<h3>Gatto che Beve</h3>
<p>Il gatto non solo mangia ma anche beve...</p>
<br>
<aside>
<details>
<summary>Indovina quanti <mark>video</mark> mi guardo in una settimana?</summary>
<p>Da lunedì a venerdì dalle <time datetime="13:00">13:00</time></p> <!-- per accessibilità per le ore si usa datetima="PT3H"(PER TRE ORE) -->
</details>
</aside>
</section>
<!-- </section> -->
</article> <!-- si usano gli articli per dei topic specifici si usa le section per delle cose più generiche, per una divisone più genreica -->
</main>
<footer>
<br>
<br>
<p><strong>© Pimply all right reserved.</strong> <br>
follow me on: instagram - twitter - youtube
</p>
</footer>
</body>
</html>