-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactUS.html
More file actions
98 lines (94 loc) · 3.78 KB
/
ContactUS.html
File metadata and controls
98 lines (94 loc) · 3.78 KB
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
<html>
<head>
<title>Sites-twinset-it-Site</title>
<link rel="stylesheet" type="text/css" href="css/ContactUs.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<div>
<form>
<div style="width:100%">
<h1 class="h4">Contact us</h1>
<p>We're here to help 24 hours a day, 7 days a week, excluding holidays.</p>
</div>
<div class="Separatore">
</div>
<div>
<h2 class="h4">
Modulo di contatto
</h2>
<p>
Scrivici: ti ricontatteremo al più presto!
</p>
<div class="cell_medium_6">
<label for="Nome">
Nome
<input required type="text" id="Nome" required maxlength="50">
</label>
</div>
<div class="cell_medium_6">
<label for="Cognome">
Cognome
<input required type="text" id="Cognome" required maxlength="50">
</label>
</div>
<div class="cell_medium_6">
<label for="Email">
E-mail
<input required type="Email" id="Email" required maxlength="50">
</label>
</div>
<div class="cell_medium_6">
<label for="Telefono">
Telefono
<input required type="tel" id="Telefono" required maxlength="2147483647">
</label>
</div>
<div class="cell_medium_6">
<label for="N_Ordine">
N° ordine
<input required type="tel" id="N_Ordine" required maxlength="2147483647">
</label>
</div>
<div class="cell_medium_6">
<label for="Customer_help">
</label> Come possiamo aiutarti?
<select id="Customer_help" required>
<option value="1">Account</option>
<option value="2">Azienda</option>
<option value="3">Ordine</option>
<option value="4">Pagamenti</option>
<option value="5">Prodotti</option>
<option value="8">Promozioni</option>
<option value="9">Resi e Recessi</option>
<option value="10">Sito internet</option>
<option value="11">Trattamento dati e privacy</option>
<option value="20">Feedback</option>
</select>
</label>
</div>
<div class="cell_medium">
<label for="Messaggio">
Messaggio
<textarea type="text" required id="Messaggio" placeholder="Scrivi qui il tuo messaggio"
maxlength="400" cols="40" rows="8"></textarea>
</label>
</label>
</div>
</div>
<h4>Newsletter</h4>
<div>
<input type="checkbox" id="c1" name="cc" />
<label for="c1"><span></span>Newsletter</label>
</div>
<div>
<input type="checkbox" id="c2" name="cc2" />
<label for="c2"><span></span>Profiling</label>
</div>
<div>
<input type="submit" class="Submit" value="Invia" id="Invia" name="Invia">
</div>
</form>
</div>
</body>
</html>