-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
photographer.html
37 lines (37 loc) · 1.07 KB
/
photographer.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
<!DOCTYPE html>
<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<meta charset="utf-8">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link href="https://fonts.googleapis.com/css?family=DM+Sans&display=swap" rel="stylesheet">
<title>Fisheye - photographe </title>
</head>
<body>
<header>
<img src="assets/images/logo.png" class="logo" />
</header>
<main id="main">
<div class="photograph-header">
<button class="contact_button" onclick="displayModal()">Contactez-moi</button>
</div>
</main>
<div id="contact_modal">
<div class="modal">
<header>
<h2>Contactez-moi</h2>
<img src="assets/icons/close.svg" onclick="closeModal()" />
</header>
<form>
<div>
<label>Prénom</label>
<input />
</div>
<button class="contact_button">Envoyer</button>
</form>
</div>
</div>
<script src="/scripts/pages/photographer.js"></script>
<script src="/scripts/utils/contactForm.js"></script>
</body>
</html>