-
Notifications
You must be signed in to change notification settings - Fork 0
/
SchermataFotoCasa.html
147 lines (133 loc) · 4.21 KB
/
SchermataFotoCasa.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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="css/FoglioDiStile.css">
<title>Schermata foto</title>
<link rel="icon" type="image/png" sizes="32x32" href="favicon/android-chrome-192x192.png">
<link rel="stylesheet" type="text/css" href="css/FoglioDiStile.css">
<meta name=”description” content=””/>
<meta name=”keywords” content=””/>
<!-- Fonte per le icone-> https://ionicons.com/ -->
<!-- Fonte per le immagini (copyright free)-> https://www.pexels.com/ -->
</head>
<!--Inizio header-->
<header>
<!--menu di navigazione-->
<nav>
<ul>
<div class="barraDiRicerca">
<li>
<input
class="testo_nero"
type="search"
placeholder="Cerca nel sito"
/><button class="bottoneRicerca" type="submit">Cerca</button>
</li>
</div>
<li>
<a href="./SchermataPrincipale.html"
><ion-icon name="home"></ion-icon> Home</a
>
</li>
<li>
<a href="#"
><ion-icon name="log-in"></ion-icon>Entra nel sito<span
style="font-size: 8px"
>∇</span
></a
>
<ul>
<li><form action="/reindirizzamentoAccesso" method="GET">
<button id="btnTrasparente" type="submit" style="margin-left:4%">
<a style="color: black">Accedi</a>
</button>
</form>
</li>
<li>
<form action="/reindirizzamentoIscrizione" method="GET">
<button id="btnTrasparente" type="submit"style="margin-left:4%;">
<a style="color: black">Iscriviti</a>
</button>
</form>
</li>
</ul>
</li>
<li>
<a href="./Dove_siamo.html"
><ion-icon name="locate"></ion-icon> Dove siamo</a
>
</li>
<li>
<a href="./Contatti.html"
><ion-icon name="mail"></ion-icon> Contatti</a
>
</li>
</ul>
</nav>
</header>
<!--Fine menu di navigazione-->
<body>
<div class="contenutoPannelli">
<h1>CARICA FOTO</h1>
<div class="modulo">
<form
class="mt-4"
action="/caricafoto"
method="POST"
enctype="multipart/form-data"
>
<input type="file" accept="image/*" name="file" id="allegaFile"/>
<input type="text" name="name" style="color: black" />
<button type="submit" id="btnPannello">Carica foto</button>
</form>
</div>
</div>
<!--Inizio footer-->
<footer>
<div class="colonne-footer">
<div class="colonna-sinistra">
<div class="footer-GEDAName">
<small>©GEDA GROUP</small>
</div>
<br />
<!--logo footer-->
<img id="logoFooter" src="img/B&B_LOGO.jpg" alt="B&B LOGO" />
</div>
<div class="colonna-centrale">
<div class="contatti">
<strong><h4>Contattaci:</h4></strong>
<p><a href="[email protected]">[email protected]</a></p>
</div>
<div class="footer-infoSuDiNoi">
<span>
<p>091 123456789</p>
<br /><br />
<p>Dove trovarci:</p>
<br />
<p>Via Esempio n1</p>
</span>
<strong><h4>Note legali</h4></strong>
</div>
</div>
<div class="colonna-destra">
<div class="icone-social">
<h4>Seguici</h4>
<a href="#"
><i> <img src="img/Logo_FB.png" alt="Facebook" /> </i
></a>
<a href="#"
><i><img src="img/Logo_IG.png" alt="Instagram" /> </i
></a>
<a href="#"
><i><img src="img/Logo_whatsapp.png" alt="Whatsapp" /> </i
></a>
</div>
</div>
</div>
</footer>
<!--Fine footer-->
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
</html>