-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontatti.html
134 lines (94 loc) · 2.98 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="GalloDriftSchhol">
<meta name="keywords" content="drfit, car, school, auto, scuola, pilotare, guida sicura." />
<meta name="description" content="Danza con la tua auto. Impara la guida Drift in sicurezza.">
<title>DriftSchool</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header class="header">
<div class="header-logo">
<a href="index.html">
<img src="image/logo.jpg">
</a>
</div>
<div class="header-hamburger">
<a href="">
<span></span>
<span></span>
<span></span>
</a>
</div>
<div class="header-menu">
<ul >
<a href="index.html">
<li>Home</li>
</a>
<a href="servizi.html">
<li>Servizi</li>
</a>
<a href="contatti.html">
<li>Contatti</li>
</a>
</ul>
</div>
</header>
<section class="contatti contatti-btn">
<div class="contatti-title">
<h2>CONTATTACI</h2>
<p>Fissa un appuntamento per una visita nel circuito.</p>
</div>
<div class="contatti-area">
<div class="area-rif">
<div class="rif">
<h2>Numero Telefono</h2>
<p>+39 xxxx xxxxx xxxx</p>
</div>
<div class="rif">
<h2>Indirizzo Email</h2>
<p>email@domain.it</p>
</div>
<div class="rif">
<h2>Indirizzo Scuola</h2>
<p>Street, n.
Zipcode. City. Country</p>
</div>
</div>
<div class="area-map">
<iframe width="100%" height="100%" id="gmap_canvas" src="https://maps.google.com/maps?q=circuito%20monza&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0">
</iframe>
<a href="https://www.embedgooglemap.net/1/"></a>
</div>
</div>
</section>
<section class="socials">
<ul class="socials-list">
<li class="socials-item"><a href="#">Facebook</a></li>
<li class="socials-item"><a href="#">Instagram</a></li>
<li class="socials-item"><a href="#">You Tube</a></li>
<li class="socials-item"><a href="#">Email</a></li>
</ul>
</section>
<div class="footer">
<span>Copyright © 2020 Drift School</span>
</div>
<div class="socket">
<span>Powered by : <a target="_blank" href="https://okayweb.co.uk">OkayWeb.co.uk</a></span>
</div>
<!-- header-menu-open -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
$(".header-hamburger").click(function(e) {
$(".header-menu").toggleClass('header-menu-open');
e.preventDefault();
});
});
</script>
</body>
</html>