-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
42 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="contact.css">
<link rel="icon" href="icon_con2.jpg">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="about.html">About me</a></li>
<li><a href="contact.html">Contact me</a></li>
</ul>
</nav>
<div class="container">
<form action="https://api.web3forms.com/submit" method="POST" class="left">
<div class="contact">
<h2>Contact Me</h2>
</div>
<input type="hidden" name="access_key" value="150ddb2d-5e1a-40be-9b23-f61c069139c3">
<input type="text" name="name" placeholder="Your name " required class="contact_input">
<input type="email" name="email" placeholder="Your Email " required class="contact_input">
<textarea name="message" placeholder="Your message" required class="contact_input"></textarea>
<button type="submit"> Sumit </button>
</form>
<div class="right">
<img src="right_img.png" alt="">
</div>
</div>
</body>
</html>