-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
92 lines (86 loc) · 2.53 KB
/
contact.html
File metadata and controls
92 lines (86 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact | Chris Panetta</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div class="container">
<h1>Chris Panetta</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact Me</a>
<a href="github.html">GitHub</a>
</nav>
</div>
</header>
<section id="contact">
<div class="container">
<h2>Contact Me</h2>
<form
action="mailto:chris.panetta@ontariotechu.net"
method="post"
enctype="text/plain"
>
<label for="name">Name:</label>
<input
type="text"
id="name"
name="name"
placeholder="Add Name Here"
required
/>
<label for="email">Email:</label>
<input
type="email"
id="email"
name="email"
placeholder="Add Name Here"
required
/>
<label for="phone">Phone:</label>
<input
type="tel"
id="phone"
name="phone"
placeholder="Add Phone Number Here"
required
/>
<label for="comments">Comments:</label>
<textarea
id="comments"
name="comments"
rows="5"
placeholder="Add Comments Here"
></textarea>
<p>
<label for="where">How did you find this form?</label>
<select name="where">
<option value="DF">Default</option>
<option value="TA">You're the TA</option>
<option value="Prof">You're the Prof</option>
<option value="Fr/Fa">You're a Friend or Family</option>
<option value="Other">Other</option>
</select>
</p>
<br />
<label for="bsf"> Am I your Best Friend Forever?</label>
<input type="checkbox" name="bsf" />
<input type="submit" value="Submit" />
<input type="reset" value="Reset" />
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Chris Panetta. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>