-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
58 lines (55 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
<main>
<h1>Contact Me</h1>
<p>Please provide the information requested below</p>
<form action="#" onsubmit="myFunction()">
<fieldset>
<label for="first-name">Enter Your First Name: <input type="text" name="" id="first-name"
placeholder="First Name" required></label>
<label for="last-name">Enter Your Last Name: <input type="text" name="" id="last-name"
placeholder="Last Name" required></label>
<label for="email">Enter Your Email: <input type="email" name="" id="email" placeholder="Email Address"
required></label>
<label for="date">Today's Date: <input type="date" id="date" required></label>
</fieldset>
<fieldset>
<label for="">How Did You Find Out About Me?
<select name="" id="">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</label>
</fieldset>
<fieldset>
<legend>Topic of Request</legend>
<label for="fe-topic"><input id="fe-topic" type="radio" name="request-topic" checked> Frontend</label>
<label for="be-topic"><input id="be-topic" type="radio" name="request-topic"> Backend</label>
<label for="ee-topic"><input id="ee-topic" type="radio" name="request-topic"> Eitherend</label>
</fieldset>
<fieldset>
<label for="">Please add additional details on what you'd like to discuss below <textarea name="" id=""
cols="30" rows="10"></textarea></label>
</fieldset>
<input id="submit" type="submit" value="Submit">
</form>
</main>
<script src="javascript.js"></script>
</body>
</html>