-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquest.html
More file actions
38 lines (38 loc) · 1.45 KB
/
quest.html
File metadata and controls
38 lines (38 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Inspirational</title>
</head>
<body>
<h3>Quests</h3>
<ul>
<li>Education is the kindling of a flame, not the filling of a vessel.</li>
<li>Man's mind, once stretched by a new idea, never regains its original dimensions.</li>
<li>Education is not the filling of a pot but the lighting of a fire.</li>
<li>Being a student is easy.</li>
</ul>
<a href="https://parade.com/1034814/marynliles/education-quotes/">For more such quests</a>
<br>
<hr>
<form action="mailto:newmail@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="yourName" value="">
<br>
<label>Your Email:</label>
<input type="email" name="yourEmail" value="">
<br>
<label>Your Quest:</label>
<textarea name="yourQuest" rows="3" cols="20"></textarea>
<br>
<label>Do you want to browse your quest ?</label>
<input type="checkbox" name="yourQuests" value="">
<input type="file" name="yourFile">
<br>
<label>Date of Submit</label>
<input type="date" name="yourDate">
<br>
<input type="submit" name="">
</form>
</body>
</html>