-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
62 lines (58 loc) · 2.09 KB
/
contact.html
File metadata and controls
62 lines (58 loc) · 2.09 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
<!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>Adeyinka Oresanya's Portfolio</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="pane">
<header>
<nav>
<label for="portfolio" class="portfolio"><a href="index.html"><span class="logo">A</span>deyinka <span class="logo">O</span>resanya</a></label>
<ul>
<li><a href="index.html">About Me</a></li>
<li><a href="./basicCalculator.html">Basic Calculator</a></li>
<li><a href="./flexboxCalculator.html">FlexBox Calculator</a></li>
<li><a href="./logIn.html">LogIn</a></li>
<li><a href="./register.html">Register</a></li>
</ul>
<a href="./contact.html" class="btn">Contact Me</a>
</nav>
</header>
</div>
<form id="contact">
<h1> Get in Touch</h1>
<label for="name">First Name:</label>
<div>
<input type="text" name="name" id="" required>
</div>
<label for="name">Last Name:</label>
<div>
<input type="text" name="name" id="" required>
</div>
<label for="email">Email:</label>
<div>
<input type="email" name="email" required>
</div>
<label for="message">Message:</label>
<div>
<textarea name="message" cols="30" rows="10" required></textarea>
</div>
<label for="priority">Priority:</label>
<div>
<input list="priority" name="priority" required/>
<datalist id="priority">
<option value="High">
<option value="Medium">
<option value="Low">
</datalist>
</div>
<div>
<input type="button" id="submit" name="" value="Submit"/>
</div>
</form>
</body>
</html>