-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
116 lines (116 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact | Aurélien Lavanchy</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./styles/general.css" />
<link rel="stylesheet" href="styles/contact.css" />
<link
rel="shortcut icon"
href="./assets/images/favicon.svg"
type="image/svg+xml"
/>
</head>
<body>
<main>
<nav>
<a href="./index.html">Portfolio</a>
<a href="./CV.html">CV</a>
<a href="./contact.html">Contact</a>
</nav>
<h1>Contact</h1>
<section class="contact">
<script src="./main.js" async></script>
<aside class="no-selection">
<h2>Coordonnées</h2>
<p><u>Téléphone</u>: (+33) 07 44 89 53 65</p>
<p class="email">
<u>Email</u>:
<a href="mailto:[email protected]"
>
</p>
<span>Copier :</span>
<button
type="button"
aria-label="Copy e-mail to clipboard"
id="email"
>
<img src="./assets/images/copy.svg" alt="" />
</button>
<img
src="./assets/images/check.svg"
alt=""
id="email-copied"
class="hidden"
/>
<ul>
<li><a href="https://github.com/aurelienLavanchy">Github</a></li>
<li>
<a>LinkedIn</a> (<b><i>en construction</i></b
>)
</li>
<!-- <li>Discord ?</li> -->
</ul>
</aside>
<article>
<form id="contact-form">
<h2 class="no-selection">Envoyer un message</h2>
<noscript
><b class="noscript"
>This form will not work without javascript!</b
></noscript
>
<label
><b>Nom <sup>*</sup></b>
<input
type="text"
id="name"
name="name"
placeholder="John Doe"
maxlength="200"
minlength="3"
required
/>
<span class="field-info name">Max. 200 caractères</span>
</label>
<label
><b>Sujet <sup>*</sup></b>
<input
type="text"
id="subject"
name="subject"
placeholder=". . ."
maxlength="150"
minlength="6"
required
/>
<span class="field-info subject">Max. 150 caractères</span>
</label>
<label
><b>Message <sup>*</sup></b>
<textarea
id="message"
name="message"
placeholder="Hello world!"
maxlength="500"
minlength="10"
required
></textarea>
<span class="field-info message">Max. 500 caractères</span>
</label>
<button type="submit">Envoyer</button>
<div id="message-sent" class="no-selection hidden">
Message envoyé !
</div>
</form>
</article>
</section>
</main>
<footer>
All icons used are courtesy of <a href="https://lucide.dev">lucide</a>
</footer>
</body>
</html>