-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (65 loc) · 1.88 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Il Mio Sito</title>
<link rel="stylesheet" href="table.css">
<style>
body {
font-family: Arial, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f0f0f0;
}
.container {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>Benvenuto nel mio sito</h1>
<div class="markdown-preview-view">
<table>
<thead>
<tr>
<th>Categoria</th>
<th>Valore 1</th>
<th>Valore 2</th>
<th>Valore 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Prodotto A</td>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>Prodotto B</td>
<td>150</td>
<td>250</td>
<td>350</td>
</tr>
<tr>
<td>Prodotto C</td>
<td>120</td>
<td>220</td>
<td>320</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>