-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontents.html
32 lines (31 loc) · 1019 Bytes
/
contents.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contents example</title>
<style type="text/css">
#mioDiv {
font-size: 4em;
}
.error {
color:orange;
}
.grave {
font-size 120%;
}
#mioDiv .error {
color:purple;
}
</style>
</head>
<body>
<h1>Contents Example</h1>
<p>Primo paragrafo <b class="error"> Primo paragrafo</b><b>Elemento in line, usa al max b e em come tag ma solo per indicare,individuare che questo elemento necessita di cura del font negli stili CSS</b></p>
<p>Secondo paragrafo <em>italico</em> <u>sottolineato è esempio ma non usarli, perchè sono cose che deve gestire un CSS</u></p>
<div id="mioDiv">Contenuto in forma di blocco, contenuto DIV, è generico non è detto che sia testo come paragrafo, deve solo avere visualizzazione a blocco <span class="error">span versione generica dei contanuti in line</span> FINE</div>
<span class="error">Individuo parte di codice con span</span>
<br>
<a href="../index.html">Home page</a>
<br/>
</body>
</html>