-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
84 lines (83 loc) · 3.18 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
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="CSS/style.css" />
<link rel="stylesheet" href="CSS/contact.css" />
<title>ADBGraphisme - Contact</title>
</head>
<body class="container-fluid p-0">
<div id="logo">
<a href="index.html">
<img src="Ressources/img/logo.webp" alt="ADBGraphisme" />
</a>
</div>
<div class="contact">
<h3>CONTACTEZ-MOI !</h3>
<p>
Vous souhaitez obtenir plus de renseignements ou un devis, n’hésitez pas
à me contacter
</p>
<p>
Alex DUBOIS BEAUPREY<br />
Graphiste webdesigner & motion designer Freelance<br />
St Gilles - Ille-et-Vilaine
</p>
<a href="tel:+33669797089">06 69 79 70 89</a>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<form id="contactform">
<label for="name">VOTRE NOM</label>
<input type="text" id="name" required value="Lucas"/>
<label for="mail">VOTRE ADRESSE E-MAIL</label>
<input type="email" id="mail" required value="[email protected]"/>
<label for="object">OBJET</label>
<input type="text" id="object" value="Object"/>
<label for="message">VOTRE MESSAGE</label>
<textarea name="message" id="message" cols="30" rows="10">hkhdfkjshdfkjshdkfjhsdkjfh</textarea>
<input type="submit" value="ENVOYER" name="submit" />
</form>
<footer>
<div class="d-flex flex-column flex-md-row justify-content-md-around ">
<ul>
<li class="mb-1">
<a href="index.html#a_propos">A PROPOS</a>
</li=>
<li class="mb-1">
<a href="index.html#service">SERVICES</a>
</li>
<li class="mb-1">
<a href="index.html#portfolio">PORTFOLIO</a>
</li>
<li class="mb-3">
<a href="contact.html">CONTACT</a>
</li>
</ul>
<div>
<a href="https://goo.gl/maps/6nRfodiXMoZB852E6" target="_blank">
<h4 class="mb-4">Localisation</h4>
<p>Rue Joseph Marie Jacquard</p>
<p>35590, SAINT-GILLES</p>
</a>
</div>
</div class="mt-4">
<div class="footer_links">ADBgraphisme © | Tous droits réservés | Mention légales | CGV</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="JS/contact.js"></script>
</body>
</html>