-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
277 lines (257 loc) · 11.6 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE HTML>
<html>
<head>
<title>PIRA Instant Language Switcher | Bootstrap</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<!--Language Change Script -->
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("select").on('change', function() {
$(this).find("option:selected").each(function() {
var lingo = $(this).attr("value");
if (lingo) {
$(".PIRA").not("." + lingo).hide();
$("." + lingo).show();
} else {
$(".PIRA").hide();
}
});
}).change();
});
</script>
<!--END Language Change Script -->
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header" class="alt">
<a href="index.html" class="logo"><strong>PIRA</strong> <span>STUDIO</span></a>
<div class="col-12 lingo">
<select name="demo-category" id="demo-category">
<option value="EN">- SELECT LANGUAGE -</option>
<option value="EN">ENGLISH</option>
<option value="IT">ITALIANO</option>
<option value="FR">FRANÇAIS</option>
</select>
</div>
<nav>
<a href="index.html#menu">Menu</a>
</nav>
</header>
<!-- Menu -->
<nav id="menu">
<ul class="EN PIRA links">
<li><a href="index.html">Home</a></li>
<li><a href="landing.html">About Us</a></li>
<li><a href="generic.html">Our Services</a></li>
</ul>
<ul class="IT PIRA links">
<li><a href="index.html">Home</a></li>
<li><a href="landing.html">Chi Siamo</a></li>
<li><a href="generic.html">Nostri Servizi</a></li>
</ul>
<ul class="FR PIRA links">
<li><a href="index.html">Home</a></li>
<li><a href="landing.html">À Propos</a></li>
<li><a href="generic.html">Nos Services</a></li>
</ul>
<ul class="EN PIRA actions stacked">
<li><a href="index.html#" class="button primary fit">Request a Quote</a></li>
<li><a href="index.html#" class="button fit">Contact Us</a></li>
</ul>
<ul class="IT PIRA actions stacked">
<li><a href="index.html#" class="button primary fit">Preventivo Gratuito</a></li>
<li><a href="index.html#" class="button fit">Contattaci</a></li>
</ul>
<ul class="FR PIRA actions stacked">
<li><a href="index.html#" class="button primary fit">Devis Gratuit</a></li>
<li><a href="index.html#" class="button fit">Contactez-Nous</a></li>
</ul>
</nav>
<!-- Banner -->
<section id="banner" class="major">
<div class="inner">
<header class="EN PIRA major">
<h1>Need a modern, stress-free website?</h1>
</header>
<div class="EN PIRA content">
<p style="font-size: 19px">We build beautiful, mobile-friendly sites for retail, hospitality and boutique businesses. Marketing, Graphic & Web design based in Lago D'Orta, Italy.</p>
<ul class="actions">
<li><a href="index.html#" class="button next scrolly">Get a free quote</a></li>
</ul>
</div>
<header class="IT PIRA major">
<h1>Bisogno di un sito moderno e senza stress?</h1>
</header>
<div class="IT PIRA content">
<p style="font-size: 19px">Realizziamo bellissimi siti ottimizzati per dispositivi mobili per negozi, il settore d'ospitalità e aziende boutique. Marketing, grafica e web design con sede a Lago d'Orta.</p>
<ul class="actions">
<li><a href="index.html#" class="button next scrolly">Preventivo gratuito</a></li>
</ul>
</div>
<header class="FR PIRA major">
<h1>Besoin d'un site moderne et sans stress?</h1>
</header>
<div class="FR PIRA content">
<p style="font-size: 19px">Nous créons de beaux sites optimisés pour les appareils mobiles pour les magasins, l'hôtellerie et les boutiques. Marketing, graphisme et webdesign basé au Lac d'Orta.</p>
<ul class="actions">
<li><a href="index.html#" class="button next scrolly">Devis Gratuit</a></li>
</ul>
</div>
</div>
</section>
<!-- White -->
<div id="main" class="alt" style="background-color:#fff; color:#000; text-align:center">
<section id="one">
<div class="inner">
<div class="EN PIRA col-4 col-12-medium">
<h3 style="color:#000; font-size: 24px">It doesn't matter what size business you have.</h3>
<p style="font-size: 22px">A modern, easy-to-use website is now foundational to the success of any business. Customers want to find your website quickly - if it's hard to find or difficult to use they certainly won't stick around to book of buy from you. Stop chasing customers - our websites will bring them to you!</p>
</div>
<div class="IT PIRA col-4 col-12-medium">
<h3 style="color:#000; font-size: 24px">Non importa quale sia la dimensione della tua azienda.</h3>
<p style="font-size: 22px">Un sito Web moderno e facile ad utilizare è ora alla base del successo di qualsiasi azienda. I clienti vogliono trovare rapidamente il tuo sito Web - se è difficile da trovare o difficile da usare, sicuramente non si acquisteranno da te. Smetti di inseguire i clienti: i nostri siti Web li porteranno a te!</p>
</div>
<div class="FR PIRA col-4 col-12-medium">
<h3 style="color:#000; font-size: 24px">La taille de votre entreprise n'a pas d'importance.</h3>
<p style="font-size: 22px">Un site Web moderne et facile à utiliser est désormais le fondement du succès de toute entreprise. Les clients veulent trouver votre site Web rapidement - s'il est difficile à trouver ou à utiliser, ils ne resteront certainement pas là pour acheter chez vous. Arrêtez de courir derriere des clients - nos sites Web vous les apporteront!</p>
</div>
</div>
</section>
</div>
<!-- Main -->
<div id="main">
<!-- One -->
<section id="one" class="tiles">
<article>
<span class="image">
<img src="images/pic04.jpg" alt="" />
</span>
<header class="EN PIRA major">
<h1><a href="landing.html" class="link">Our Services</a></h1>
<p>Simple, affordable pricing.</p>
</header>
<header class="IT PIRA major">
<h1><a href="landing.html" class="link">Nostri Servizi</a></h1>
<p>Desisgn a servizio completo.</p>
</header>
<header class="FR PIRA major">
<h1><a href="landing.html" class="link">Nos Services</a></h1>
<p>Design à service complet.</p>
</header>
</article>
<article>
<span class="image">
<img src="images/pic03.jpg" alt="" />
</span>
<header class="EN PIRA major">
<h1><a href="landing.html" class="link">About Us</a></h1>
<p>With love, from Orta.</p>
</header>
<header class="IT PIRA major">
<h1><a href="landing.html" class="link">Chi Siamo</a></h1>
<p>Con amore, da Orta.</p>
</header>
<header class="FR PIRA major">
<h1><a href="landing.html" class="link">Qui Nous Sommes</a></h1>
<p>Avec amour, d'Orta.</p>
</header>
</article>
</section>
<!-- Two -->
<section id="two">
<div class="EN PIRA inner">
<header class="major">
<h2>Read our free Small <br>Business Marketing Guide</h2>
</header>
<p style="font-size: 22px">We've consulted with and built for dozens of small businesses over the years. We know what works - and what doesn't - when it comes to building an online footprint! Our 2020 Small Buiness Marketing Guide is perfect for anyone looking to take their business to the next level this year.</p>
<ul class="actions">
<li><a href="landing.html" class="button next">Free Download</a></li>
</ul>
</div>
</section>
</div>
<!-- Contact -->
<section id="contact">
<div class="inner">
<section>
<form method="post" action="#">
<div class="fields">
<div class="field half">
<label for="name">Name*</label>
<input type="text" name="name" id="name" />
</div>
<div class="field half">
<label for="email">Email*</label>
<input type="text" name="email" id="email" />
</div>
<div class="field">
<label for="message">Message*</label>
<textarea name="message" id="message" rows="6"></textarea>
</div>
</div>
<ul class="actions">
<li><input type="submit" value="Send Message" class="primary" /></li>
<li><input type="reset" value="Clear" /></li>
</ul>
</form>
</section>
<section class="split">
<section>
<div class="contact-method">
<span class="icon solid alt fa-envelope"></span>
<h3>Email</h3>
<a href="index.html#">[email protected]</a>
</div>
</section>
<section>
<div class="contact-method">
<span class="icon solid alt fa-phone"></span>
<h3 class="EN PIRA">Phone</h3>
<h3 class="IT PIRA">Telefono</h3>
<h3 class="FR PIRA">Téléphone</h3>
<span>(+39) 123 456 7890</span>
</div>
</section>
<section>
<div class="contact-method">
<span class="icon solid alt fa-home"></span>
<h3 class="EN PIRA">Address</h3>
<h3 class="IT PIRA">Indirizzo</h3>
<h3 class="FR PIRA">Adresse</h3>
<span>123 Main Street, <br />
Monte Rosa, Italia</span>
</div>
</section>
</section>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="icons">
<li><a href="https://twitter.com/gradivis" class="icon brands alt fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/Gradivis" class="icon brands alt fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://www.linkedin.com/in/dinidh/" class="icon brands alt fa-linkedin-in"><span class="label">LinkedIn</span></a></li>
</ul>
<ul class="copyright">
<li>© PIRA</li><li>Design: <a href="https://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>