-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (57 loc) · 2.03 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contatti - Il Tuo Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header id="home">
<div class="container">
<div class="logo">
<!-- Inserisci qui il tuo logo -->
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Servizi</a></li>
<li><a href="contact.html">Contatti</a></li>
</ul>
</nav>
</div>
<div class="header-content">
<h1>Contact</h1>
<p>Sviluppatore Web Freelancer</p>
</div>
</header>
<!-- Main Content -->
<main>
<section id="contact" class="section">
<div class="container">
<h2>Contattami</h2>
<!-- Inserisci qui le informazioni per contattarti -->
<p>Puoi contattarmi via email a [[email protected]] o tramite i social network.</p>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="name">Nome:</label><br>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label><br>
<input type="text" id="email" name="email"><br>
<label for="message">Messaggio:</label><br>
<textarea id="message" name="message"></textarea><br><br>
<input type="submit" value="Invia">
<input type="reset" value="Reset">
</form>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2024 GiuseSampi. All rights reserved.</p>
</div>
</footer>
</body>
</html>