-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontatti.html
76 lines (66 loc) · 2.37 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contatti - WebWarp</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="assets/Logo.png" type="image/x-icon">
</head>
<body>
<!-- Navbar -->
<nav>
<div class="logo">
<img src="assets/Logo.png" alt="Logo di WebWarp" /> <!-- Aggiunto l'attributo alt per accessibilità -->
<h1>WebWarp</h1>
</div>
<ul>
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="servizi.html">Servizi</a>
</li>
<li>
<a href="chi_sono.html">Chi sono</a>
</li>
<li>
<a href="contatti.html">Contatti</a>
</li>
</ul>
<div class="hamburger">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
</nav>
<div class="menubar">
<ul>
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="servizi.html">Servizi</a>
</li>
<li>
<a href="chi_sono.html">Chi sono</a>
</li>
<li>
<a href="contatti.html">Contatti</a>
</li>
</ul>
</div>
<!-- Contenuto -->
<section class="contatti-page">
<span class="titolo-home">Contattaci sui nostri social</span>
<p>Siamo qui per offrirti i migliori servizi web. Se hai domande, suggerimenti o desideri informazioni su come
possiamo aiutarti, non esitare a contattarci tramite i nostri canali social.</p>
<p>Ti aspettiamo!</p>
<a href="https://www.tiktok.com/@gabriii_vale" target="_blank"><button class="tik-tok-button" >TikTok</button></a>
<a href="https://www.instagram.com/gabrielevalente._/" target="_blank"><button class="instagram-button">Instagram</button></a>
<a href="https://github.com/gabriiivale007" target="_blank"><button class="git-hub-button">GitHub</button></a>
<a href="https://wa.me/3773795326" target="_blank"><button class="whatsapp-button">WhatsApp</button></a>
</section>
<script src="script.js"></script>
</body>
</html>