-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabelle.html
163 lines (162 loc) · 6.73 KB
/
tabelle.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<head>
<meta name="charset" content="UTF-8">
<meta name="author" content="Raffy U.">
<meta name="description" content="sito generico">
<meta name="keywords" content="html, css, sass">
<title> Guida Html e Css Javascript - Tabelle</title>
<link rel="apple-touch-icon" sizes="180x180" href="Frame1.svg">
<link rel="icon" type="image/png" sizes="32x32" href="Frame1.svg">
<link rel="icon" type="image/png" sizes="16x16" href="Frame1.svg">
<link rel="manifest" href="dispensa 3/site.webmanifest">
<link rel="mask-icon" href="Frame1.svg" color="#5bbad5">
<link rel="shortcut icon" href="Frame1.svg">
<meta name="msapplication-TileColor" content="#0100ff">
<meta name="msapplication-TileImage" content="frame1.svg">
<meta name="msapplication-config" content="dispensa 3/browserconfig.xml">
<meta name="theme-color" content="#3630af">
<link rel="stylesheet" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
</style>
</head>
<body>
<header>
<h1>Guida HTML, CSS e Javascript,<br> Introduzione allo studio dei linguaggi.</h1>
<nav>
<ul>
<li> <a href="index.html" title="Homepage della guida HTML,CSS e Javascript"> Home</a></li>
<li> <a href="testi.html" title="i testi nel sito web"> Testi</a></li>
<li><a href="immagini.html" title="immagini del sito"> immagini</a></li>
<li><a href="link.html" title="link per i siti"> Link</a></li>
<li><a href="Iframes.html" title="iframe per i siti">Iframe</a></li>
<li><a href="Foglidistile.html" title="Fogli di stile">Fogli di stile</a></li>
<li><a href="box-model.html" title="Box Model">Box Model</a></li>
<li><a href="block-inline.html" title="Box Model" id="linkAttivo">Block-inline</a></li>
<li><a href="position.html" title="Position" >Position</a></li>
<li><a href="floating.html" title="Floating">Floating</a></li>
<li><a href="flexbox.html" title="Flexbox">Flexbox</a></li>
<li><a href="transform-transition.html" title="Transform e Transition">Transform - Transition</a></li>
<li><a href="form.html" title="Form">Form</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Le tabelle</h1>
<p>Una tabella è una collezione di dati che si ottendo incrociano righe e colonne. Viene utilizzata a supporto del testo <br>
Il tag che viene utilizzato per rappresentare una tabella è il tag <strong><table></strong>.
</p>
</section>
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</tr>
</table>
<table width="100%" border="1">
<caption>
Caption o intestazione della page
</caption>
<thead>
<tr>
<td>Mese</td>
<td>Febbraio</td>
<td>Entrata</td>
<td>Uscita</td>
</tr>
</thead>
<tbody>
<tr>
<td>Gennaio</td>
<td>Meccanico</td>
<td>-</td>
<td>100</td>
</tr>
<tr>
<td>Febbraio</td>
<td>Risparmi</td>
<td>150</td>
<td>-</td>
</tr>
<tr>
<td>Marzo</td>
<td>Risparmi/Bollete</td>
<td>200</td>
<td>120</td>
</tr>
</tbody>
<tfoot>
<td>Primo Trimeste</td>
<td>totale</td>
<td>350</td>
<td>220</td>
</tfoot>
</table>
<table class="tableDispensa">
<!---Intestazione della tabella-->
<caption>Report Profitti Aziendali</caption>
<thead> <!--Parte superiore della tabella-->
<tr> <!--Riga della tabella-->
<th scope="col">Mese</th> <!-- intestazione di ogni singola colonna-->
<th scope="col">Entrata</th>
<th scope="col">Uscita</th>
<th scope="col">Risultato</th>
</tr>
</thead>
<tbody> <!--corpo della tabella -->
<tr>
<th scope="row">Gennaio</th>
<td>300</td>
<td>100</td>
<td>1200</td>
</tr>
<tr>
<th scope="row">Febbraio</th>
<td>300</td>
<td>100</td>
<td>1200</td>
</tr>
<tr>
<th scope="row">Aprile</th>
<td>300</td>
<td>100</td>
<td>1200</td>
</tr>
<tr>
<th scope="row">Maggio</th>
<td>300</td>
<td>100</td>
<td>1200</td>
</tr>
<tr>
<th scope="row">Giugno</th>
<td>300</td>
<td>100</td>
<td>1200</td>
</tr>
</tbody>
<tfoot> <!-- Parte finale della tabella-->
<tr>
<th colspan="6">Report Semetrale dei profitti aziendali</th>
</tr>
</tfoot>
</table>
</main>
<footer><!-- inizio piedipagina-->
<p> © Copyright by Raffaele Coppola</p>
</footer>
</body>
</html>