-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·49 lines (43 loc) · 1.26 KB
/
Copy pathindex.html
File metadata and controls
executable file
·49 lines (43 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Comune di Quartu Sant'Elena</title>
</head>
<body>
<main>
<h1>Contatti</h1>
<form>
<p>
<label for="denominazione">denominazione</label><br>
<input type="text" id="denominazione" name="denominazione">
</p>
<p>
<label for="partita_iva">partita iva / codice fiscale</label><br>
<input type="text" id="partita_iva" name="partita_iva">
</p>
<h2>Contatti</h2>
<p>
<label for="email">Email*</label><br>
<input type="email" id="email" name="email" required>
</p>
<p>
<label for="pec">PEC</label><br>
<input type="email" id="pec" name="pec">
</p>
<p>
<label for="cellulare">Cellulare*</label><br>
<input type="tel" id="cellulare" name="cellulare" required>
</p>
<p>
<label for="sito_web">sito web</label><br>
<input type="url" id="sito_web" name="sito_web">
</p>
<button type="submit">Avanti</button>
</form>
<p class="output">(I risultati appariranno qui)</p>
</main>
<script type="module" src="/main.js"></script>
</body>
</html>