-
Notifications
You must be signed in to change notification settings - Fork 3
/
Contact.html
66 lines (42 loc) · 1.39 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
<html>
<head>
<title> Contact Form Design </title>
<meta name="viewport" content="width=device-width, intial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<script src="js/menu.js"></script>
<body class="contact-page">
<header>
<img src="images/logo.png">
<nav>
<nav class="menu">
<a class="button"><img src="icon.png" /></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="Resume.html">Resume</a></li>
<li><a href="links.html">Links</a></li>
<li><a href="Projects.html">Projects</a></li>
</ul>
</nav>
</header>
<form action="https://formspree.io/[email protected]" method="POST" />
<h3> Contact Me </h3>
Full name:<br>
<input type="text" id="name" name="fullname" placeholder="Your full name...">
<br>
Email:<br>
<input type="text" id="Email" name="_replyto" placeholder="Your email adress...">
<br>
Phone number:<br>
<input type="text" id="Phone" name="Phone" placeholder="Your phone number (optional)...">
<br><br>
<textarea id="subject" name="subject" placeholder="Write your message..."></textarea>
<input type="submit" value="Send">
</form>
<footer class="footer">
©2019. JK All Rights Reserved
</footer>
</body>
</html>