-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontacten.html
161 lines (152 loc) · 5.09 KB
/
contacten.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Portraits le salon photo | Contact </title>
<link href="style/style.css" rel="stylesheet" type="text/css"/>
<link href="style/style.css" rel="stylesheet" type="text/normalize"/>
<script src="script/changepage.js" type="text/javascript"></script>
<script src="script/contact.js" type="text/javascript"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<img id="logo" src="Images/Logoen.png">
<nav>
<a href="accueilen">Home</a>
<a href="lesalonen.html">The exhibition</a>
<a href="infopraten.html">Useful information</a>
<a href="#">Contact</a>
<a href="reservationen.html">Book your places</a>
</nav>
<div id="login">
<a href="#" id="account">
<p class="text-hide">Logo account</p>
</a>
<div id="connection">
<input placeholder="Login" type="text">
<input placeholder="Password" type="password">
</div>
</div>
<div id="langue">
<input type="image" id="flaglangue" onClick="changepage('fr')" src="Images/flagfr.png">
</div>
</header>
<div id="banner-salon">
<img id="img-banner-salon" src="Images/Contact.png">
<p id="text-banner-salon">Contact</p>
</div>
<div id="contact-visiteur">
<div class="paragraph-contact">
<h2 class="text-contact">Contact for particular </h2>
</div>
<div class="contact-button">
<input type="button" onClick="contact('presse')" value="Contact Presse">
</div>
<form method="GET">
<legend>Your Coordinates</legend>
<table class="form-contact">
<tr>
<td><label for="nom">Last Name:</label></td>
<td><input id="nom" name="nom" type="text"></td>
</tr>
<tr>
<td><label for="prenom">First Name:</label></td>
<td><input id="prenom" name="prenom" type="text"></td>
</tr>
<tr>
<td>Gender :</td>
<td>
<input type="radio" name="genre" value="femme"> Woman<br/>
<input type="radio" name="genre" value="homme"> Man<br/>
<input type="radio" name="genre" value="autres"> Other
</td>
</tr>
<tr>
<td><label for="mail">Mail address :</label></td>
<td><input id="mail" name="mail" type="email"></td>
</tr>
<tr>
<td><label for="message">Message :</label></td>
<td><textarea id="message" name="messages" placeholder="Your message" rows="5" cols="33"></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="button" value="Send" class="envoi-contact"></td>
</tr>
</table>
</form>
<div class="text">
<div class="paragraph">
<p>
10 avenue de Viennes <br/>
59600 MAUBEUGE <br/>
TEL : +33 3-25-84-69-36 <br/>
Mail : [email protected] <br/>
</p>
</div>
</div>
</div>
<div id="contact-presse">
<div class="paragraph-contact">
<h2 class="text-contact">Press Contact</h2>
</div>
<div class="contact-button">
<input type="button" onClick="contact('visiteur')" value="Visitor Contact">
</div>
<form method="GET">
<legend>Your Coordinates</legend>
<table class="form-contact">
<tr>
<td><label for="agence">Agency's Name:</label></td>
<td><input id="nomagence" name="agence" type="text"></td>
</tr>
<tr>
<td><label for="adresse">Agency's Address :</label></td>
<td><input id="adresse" name="adresse" type="text"></td>
</tr>
<tr>
<td><label for="mail">Mail Address :</label></td>
<td><input id="mail" name="mail" type="email"></td>
</tr>
<tr>
<td><label for="tel">Phone Number :</label></td>
<td><input id="tel" name="tel" type="tel"></td>
</tr>
<tr>
<td><label for="message">Message :</label></td>
<td><textarea id="message" name="messages" placeholder="Your message" rows="5" cols="33"></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="button" value="Send" class="envoi-contact"></td>
</tr>
</table>
</form>
<div class="text">
<div class="paragraph">
<p> Mme De-Vecchi Francesca <br/>
10 avenue de Viennes <br/>
59600 MAUBEUGE <br/>
TEL : +33 3-27-84-70-21 <br/>
FAX : +33 4-85-95-52-35<br/>
Mail : [email protected]</p>
</div>
</div>
</div>
<footer>
<div id="footer-social">
<a id="fb"><span class="text-hide">Facebook</span></a>
<a id="insta"><span class="text-hide">Instagram</span></a>
<a id="yt"><span class="text-hide">Youtube</span></a>
<a id="twitter"><span class="text-hide">Twitter</span></a>
</div>
<div>
<a href="#" id="agence">
<span class="text-hide">Agence Pixel</span>
</a>
</div>
<div>
<a href="#" id="mentions">Mentions Légales</a>
</div>
</footer>
</body>
</html>