-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
79 lines (79 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<section>
<div class="container">
<div class="contactInfo">
<div>
<h2> contact Info</h2>
<ul class="info">
<li>
<span><img src="logo/location.png" width="70px" height="70%"></span>
<span>
BP Abidjan 4 <br>
plateau , cité administrative <br> immeuble 2 appartement 25
</span>
</li>
<li>
<span><img src="logo/mail.png" width="70px" height="70%"></span>
<span>
Oracle@Bat@gmail.com
</span>
</li>
<li>
<span><img src="logo/call.png" width="70px" height="70%"></span>
<span>
05 86 01 25 73 / 22 50 66 00
</span>
</li>
</ul>
</div>
<ul class="sci">
<li><a href="#"><img src="logo/1.png" alt="" width="30px" height="70%"></a></li>
<li><a href="#"><img src="logo/2-.png" alt="" width="30px" height="70%"></a></li>
<li><a href="#"><img src="logo/3.png" alt="" width="30px" height="70%"></a></li>
<li><a href="#"><img src="logo/4.png" alt="" width="30px" height="70%"></a></li>
</ul>
</div>
<div class="contactForm">
<h2>Envoyer un message</h2>
<div class="form">
<div class="inputform w5">
<input type="text" name="" id="" required>
<span>Nom</span>
</div>
<div class="inputform w5">
<input type="text" name="" id="" required>
<span>Prénom</span>
</div>
<div class="inputform w5">
<input type="email" name="" id="" required>
<span>Adresse mail</span>
</div>
<div class="inputform w5">
<input type="text" name="" id="" required>
<span>Numéro de téléphone</span>
</div>
<div class="inputform w10">
<textarea name="" id="" cols="30" rows="10" required></textarea>
<span>Ecrire ton message ici...</span>
</div>
<div class="inputform w10">
<input type="submit" name="" id="" value="envoyer">
</div>
<div class="retour">
<a href="index2.html">Retour à la page d'accueil</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>