-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
89 lines (89 loc) · 2.31 KB
/
contact.html
File metadata and controls
89 lines (89 loc) · 2.31 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
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
<!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 | Matthieu GURAK - Web Developer and Digital World Trainer
</title>
<meta
name="description"
content="Contact me, Matthieu GURAK, in the digital world, particularly in Development"
/>
<meta name="keywords" content="cv,developer,digital,html" />
<meta
property="og:title"
content="Contact | Matthieu GURAK - Web Developer and Digital World Trainer"
/>
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Contact me, Matthieu GURAK, in the digital world, particularly in Development"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<header>
<div class="logo">
<a href="/">
<img
src="./public/logo.png"
alt="Matthieu GURAK, Web Developer and Digital World Trainer"
/>
Matthieu GURAK
</a>
</div>
<nav>
<ul>
<li><a href="/">Homepage</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/articles.html">Articles</a></li>
<li><a href="/contact.html" class="active">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div id="hero" class="full">
<h1>Contact Me</h1>
<h2>I'm here if you want to know more about me</h2>
</div>
<div id="contact" class="full">
<form action="" method="POST">
<label for="name">Your Name:</label>
<input type="text" name="name" id="name" required />
<label for="email">Your Email</label>
<input type="email" name="email" id="email" required />
<label for="phone">If you want to be called:</label>
<input type="tel" name="phone" id="phone" />
<label for="message">Your message:</label>
<textarea
name="message"
id="message"
cols="30"
rows="10"
required
></textarea>
<button type="submit">Let be in touch</button>
</form>
</div>
</main>
</body>
</html>