-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
62 lines (62 loc) · 1.86 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
<!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" />
<link rel="stylesheet" href="./style/style.css" />
<script src="assets/javascript/contact.js"></script>
<title>Aziz Fatkhu Rohman</title>
</head>
<body>
<nav>
<div class="logo">
<a href="index.html">
<img src="./assets/images/logo.png" alt="" />
</a>
<ul>
<li>
<a href="index.html" class="home">Home</a>
</li>
<li>
<a href="#">My Project</a>
</li>
</ul>
</div>
<div class="contact-me">
<a href="contact.html">Contact Me</a>
</div>
</nav>
<div class="intro"><h1>GET IN TOUCH</h1></div>
<div class="form">
<form id="contact">
<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="phone_number">Phone Number</label>
<input type="text" id="phone_number" />
</div>
<div>
<label for="subject">subject</label>
<select name="subject" id="subject">
<option value="null"></option>
<option value="1">Lets Talk</option>
<option value="2">Lets Colaborate</option>
<option value="3">Lets Create Project</option>
</select>
</div>
<div>
<label for="message">Your Message</label>
<textarea name="message" id="message" cols="30" rows="2"></textarea>
</div>
<button type="submit" class="submit" onclick="getData()">Submit</button>
</form>
</div>
</body>
</html>