-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
141 lines (127 loc) · 4.96 KB
/
contact.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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Contact - Band</title>
<link rel="stylesheet" type="text/css" href="./css/contact.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body>
<!-- Section: Contact -->
<section id="info">
<h1>Contact details</h1>
<hr>
<ul>
<li>
<div class="icon icon1">
<i class="fas fa-star fa-lg"></i>
</div>
<div>
<p>City Hall Park,<br>New York, NY 10007, USA</p>
</div>
</li>
<li>
<div class="icon icon1">
<i class="fas fa-globe-americas fa-lg"></i>
</div>
<div>
<p> (1239) 222.444<br>[email protected]</p>
</div>
</li>
<li>
<div class="icon icon1">
<i class="far fa-clock fa-lg"></i>
</div>
<div>
<p>Mon-Fri: 8:00 - 16:00<br>Sat-Sun: Closed</p>
</div>
</li>
</ul>
</section>
<!-- Closing: Contact -->
<!-- Section : Formulaire -->
<section id="formulaire">
<h1>Get in touch</h1>
<hr>
<form name="Form1" action="http://www.iro.umontreal.ca/~lapalme/ift1005/Exercices/9/echoValeurs.cgi" method="POST" enctype="multipart/form-data">
<div class="first-line">
<div>
<label> Your Name (required)<br>
<span>
<input type="text" name="your-name" value="" size="80" required>
</span>
</label>
</div>
<div>
<label> Your Email (required)<br>
<span>
<input type="email" name="your-email" value="" size="80" required>
</span>
</label>
</div>
<div>
<label> Phone<br>
<span>
<input type="tel" pattern="(\+389)[\-]\d{3}[\-]\d{3}" name="your-phone" value="" size="80">
</span>
</label>
</div>
</div>
<div class="second-line">
<div>
<label> Pick your service<br>
<span>
<select name="pys">
<option value="Consulting" selected>Consulting</option>
<option value="Planning">Planning</option>
<option value="Nutrition">Nutrition</option>
</select>
</span>
</label>
</div>
<div>
<label> Subject<br>
<span>
<input type="text" name="your-subject" value="" size="120">
</span>
</label>
</div>
</div>
<div class="third_line">
<label>
Your Message<br><span><textarea name="your-message" cols="240" rows="4"></textarea></span>
</label>
</div>
<p>
<button class="button button1" type="submit" value="submit" name="send">Send</button>
</p>
</form>
</section>
<!-- Closing : Formulaire -->
<!-- Feature -->
<section id="feature">
<ul>
<li>
<div class="logo2"><img src="./assets/airiband..png" alt="logoairi"></div>
</li>
<li>
<a href="contact.html">Terms&conditions</a> | <a href="contact.html">Privacy policy</a>
</li>
<li>
<div class="social">
<a href="www.facebook.com"> <div class="icon2"><i class="fab fa-facebook-f"></i></div></a>
<a href="www.twitter.com"><div class="icon2"><i class="fab fa-twitter"></i></div></a>
<a href="www.instagram.com"><div class="icon2"><i class="fab fa-instagram"></i></div></a>
<a href="www.linkedin.com"><div class="icon2"><i class="fab fa-linkedin-in"></i></div></a>
</div>
</li>
</ul>
</section>
<!-- Closing : Feature -->
<!-- Footer -->
<footer>
<p>PROUDLY POWERED BY WORDPRESS | THEME: AIRI BY ATHEMES.<p>
</footer>
<!-- Closing : Footer -->
</body>
</html>