-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaqs.htm
58 lines (53 loc) · 1.79 KB
/
faqs.htm
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> About Us</title>
<link href="css/default.css" rel="stylesheet" />
</head>
<body>
<script language="JavaScript">
function showFAQ(form) {
form.answer.value = form.question.options[form.question.selectedIndex].value;
}
</script>
<img src="images/cooltext1902873350.png" />
<ul id="nav">
<li><a href="/Default.htm">Home</a></li>
<li><a href="/about.htm">About Us</a></li>
<li><a href="/Planes.htm">Our Planes</a></li>
<li><a href="/faqs.htm">FAQs</a></li>
<li><a href="/contact.htm">Contact</a></li>
<li><a href="/Login.htm">Login</a></li>
</ul>
<form name=faqform>
<table border=1 cellspacing=0 cellpadding=5>
<tr bgcolor="#1B62A9">
<td align=left>
<font face="verdana,arial" size="4" color="#ffffff">
<b>What do you offer?</b>
</font>
</td>
</tr>
<tr bgcolor="#ffffcc">
<td>
<font face="verdana,arial" size="4">
<br>
Browse the Frequently Asked Questions below and click for the answer.
<p>
<select size=4 name=question onchange="javascript:showFAQ(this.form);">
<option value="We have 12 planes and you can see these on our planes page."> --> How many planes do you have?
<option value="We love planes."> --> Why do you do this?
<option value="500 miles."> --> What's the farthest you have flown?
<option value="Yes you surely can. "> --> Can I rent a pilot and a plane?
</select>
<p>
Answer:
<p>
<textarea name="answer" rows=15 cols=50 wrap="soft"></textarea>
</font>
</td>
</tr>
</table>
</form>
</body>
</html>