-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfeedback.html
More file actions
30 lines (27 loc) · 743 Bytes
/
Copy pathfeedback.html
File metadata and controls
30 lines (27 loc) · 743 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>13-SendMessage</title>
<link rel="stylesheet" href="CSS/feedback-style.css">
</head>
<body>
<div id="wrap">
<h1>Give Us Feedback:</h1>
<br><br><br>
<div id="form-wrap">
<form>
<p>HELLO JobAssembler,</p>
<label for="email">Your Message:</label>
<textarea name="message" id="message" value="Your Message"></textarea>
<p>BEST,</p>
<label for="name">Name:</label>
<input type="text" name="name" value="" id="name" />
<label for="email">Email:</label>
<input type="text" name="email" value="" id="email" />
<input type="submit" name="submit" value="Send" />
</form>
</div>
</div>
</body>
</html>