index.html
1.29 KB
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
<html>
<head>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="#" class="button">How much are you earning now?</a>
<div class="modal-overlay">
<div class="modal-wrapper">
<label class="close" for=""></label>
<h2 id="modal-title">Envoyez-nous un message</h2>
<form class="message-form" action="">
<div class="input-box">
<label for="" class="input-label">Nom</label>
<input type="text" class="input-text">
<hr class="underline">
<hr class="underline-focus">
</div>
<div class="input-box">
<label for="" class="input-label">E-mail</label>
<input type="text" class="input-text">
<hr class="underline">
<hr class="underline-focus">
</div>
<div class="input-box textarea">
<label for="" class="input-label">Message</label>
<textarea class="input-text"></textarea>
<hr class="underline">
<hr class="underline-focus">
</div>
<div class="input-button">
<button class="button">Envoyer</button>
</div>
</form>
</div>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>