-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral-feedback.html
More file actions
66 lines (48 loc) · 1.93 KB
/
general-feedback.html
File metadata and controls
66 lines (48 loc) · 1.93 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>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Website Feedback</title>
<link href="general-feedback.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<div class="header-container">
<h1>Website Feedback</h1>
</div>
<br />
<div class="feedback-text">
<p>Your feedback is valuable to us. Please let us know how we're doing and how we can improve. Share your thoughts, suggestions, or any issues you've encountered.</p>
</div>
<br /><br />
<form action="mailto: eoleigh2@aol.com" method="post">
<label for="first_name">First Name:</label>
<input type="text" id="first_name" name="first_name" placeholder="First name" />
<label for="last_name">Last Name:</label>
<input type="text" id="last_name" name="last_name" placeholder="Last name" />
<label for="email">Email Address:</label>
<input type="text" id="email" name="email" placeholder="Email" />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<div class="feedback-text">
<p>Please Enter Your Feedback!</p>
</div>
<div class="feedback-form">
<div class="section">
<textarea id="comments" name="comments" placeholder="Enter text here..." rows="4" cols="50"></textarea>
</div>
</div>
<br /><br />
<!--<button class="button material-symbols-outlined" style="font-size: 36px">home</button> -->
<button type="submit">Submit</button>
</form>
<form action = "index.html">
<button class="button material-symbols-outlined" style="font-size:36px;" >
home
</button>
</form>
</body>
</html>