-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontatti.html
108 lines (96 loc) · 2.06 KB
/
contatti.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
<!DOCTYPE html>
<html>
<head>
<title>IN MANUTENZIONE</title>
<style>
/* CSS for the entire site */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh; /* Ensures the content takes up at least the full viewport height */
}
/* Header styles */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
}
/* Navigation styles */
nav {
background-color: #555;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
nav ul li a:hover {
color: #fff;
text-decoration: underline;
}
/* Main content styles */
main {
flex: 1; /* Allow the main content to grow and fill the available space */
padding: 20px;
}
/* Contact page specific styles */
main h2 {
margin-bottom: 10px;
}
main ul {
list-style-type: none;
margin: 0;
padding: 0;
}
main ul li {
margin-bottom: 5px;
}
/* Footer styles */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>Contatti</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contatti.html">Contatti</a></li>
</ul>
</nav>
<main>
<h2>Informazioni di contatto</h2>
<p>Puoi contattarci al seguente indirizzo email::</p>
<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</main>
<footer>
© 2023 delfo.top All rights reserved.
</footer>
</body>
</html>