-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-form.html
63 lines (62 loc) · 1.79 KB
/
contact-form.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
<!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-form</title>
<link rel="stylesheet" href="assets/css/contact-form.css"/>
</head>
<body>
<nav class="jk">
<div class="item-left">
<ul>
<li class="imglogo">
<img src="images/logobrand.png" alt="logobrand.png"/>
</li>
<li>
<a class=" active" href="index.html">Home</a>
</li>
<li>
<a class=" activee" href="#">My Project</a>
</li>
</ul>
</div>
<div class=" item-right">
<a href="contact-form.html">Contact me</a>
</div>
</nav>
<P>GET IN TOUCH</P>
<form>
<div>
<label for="name">Name</label>
<input type="text" id ="name"/>
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email"/>
</div>
<div>
<label for="telp">Phone Number</label>
<input type="text" id="telp"/>
</div>
<div>
<label for="subject">Subject</label>
<select id="subject">
<option></option>
<option>front end</option>
<option>back end</option>
<option>fullstack</option>
</select>
</div>
<div>
<label for="message">Your Message</label>
<textarea id="message"></textarea>
</div>
<div>
<button type="button"onclick="getData()">Submit</button>
</div>
</form>
</body>
<script src="assets/css/contact-form.js"></script>
</html>