-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewerInteractions.html
More file actions
80 lines (76 loc) · 2.74 KB
/
viewerInteractions.html
File metadata and controls
80 lines (76 loc) · 2.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Plant Care - Feedback Options</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<meta name = "author" content = "Grace Hudgens">
<meta name = "description" content = "A place to give feedback to the creator of this website."
<html lang ="en-US">
</head>
<body id = "viewerInteractions">
<h1>Viewer Feedback</h1>
<div class = "row">
<!-- navigation panel -->
<div class = "column">
<nav>
<ul id = "nav">
<li id = "nav"><a href = "index.html">Home</a></li>
<li id = "nav"><a href = "succulents.html">Succulents/Desert Plants</a></li>
<li id = "nav"><a href = "easyPlants.html">Easy Plants</a></li>
<li id = "nav"><a href = "advancedPlants.html">Advanced Plants</a></li>
<li id = "nav"><a href = "viewerInteractions.html">Feedback Options </a></li>
</ul>
</nav>
</div>
<div class = "column information">
<h3>If you would like to contact me about any plant information - or expressly tell me I'm wrong, please fill out the form below.</h3>
<div class = "container">
<form action="action_page.php">
<label>First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your first name..">
<label>Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label>Email</label>
<input type="text" id="email" name="email" placeholder="Your email...">
<label>Subject</label>
<select id="subject" name="subject">
<option value="suggestions">Website improvements</option>
<option value="info">Requesting more information</option>
<option value="wrongInfo">Incorrect information on this website</option>
</select>
<input type="submit" value="Submit">
</form>
</div>
<h3>Here is the sample email I will send you back (depending on the subject)</h3>
<address id = "myAdress">
<p>
Grace Hudgens<br>
1234 Street st<br>
Misc city<br>
California<br>
USA<br>
</p>
<h4>Contact Information</h4>
<p>
Email: thisIsAFakeEmail@fakeEmail.com<br>
Phone: (123) 456-789<br>
</p>
<p><time datetime = "2020-09-08">September 9th 2020</time></p>
</address>
<address>
<p>
Your name<br>
Your email<br>
</p>
</address>
<h5>Re: Your subject</h5>
<p>Here is where I would address you concerns or comments about this website or plants in general</p>
<p>I would look forward to talking with you!</p>
<p>Have a nice day,</p>
<h3> Grace Hudgens</h3>
</div>
</div>
</body>
</html>