-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.html
More file actions
76 lines (74 loc) · 2.82 KB
/
Form.html
File metadata and controls
76 lines (74 loc) · 2.82 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Training Zone</title>
<!-- InstanceEndEditable -->
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<link href="Style/GlobalStyle.css" rel="stylesheet" type="text/css" />
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
</head>
<body id="main">
<div id="Banner"><img src="Image/Banner.png" width="500" height="100" /></div>
<ul id="MenuBar1" class="MenuBarHorizontal">
<li><a href="index.html">Home</a></li>
<li><a href="History.html">History</a></li>
<li><a href="Announcement.html">Announcement</a></li>
<li><a href="Form.html">Form</a></li>
<li><a href="Contact%20us.html">Contact us</a></li>
<li><a href="Links.html">Links</a></li>
</ul>
<p> </p>
<p> </p>
<!-- InstanceBeginEditable name="Body" -->
<form action="" method="get" id="form1" name="form1">
<table width="400" border="1" cellspacing="1" cellpadding="1">
<tr>
<td>Your Name: </td>
<td><label for="name"><img src="Image/cross.png" alt="X" name="nameTick" width="12" height="12"
id="nameTick"/></label>
<input type="text" name="name" id="name" size="40" autofocus onKeyUp="nameEntered(this);"/></td>
</tr>
<tr>
<td>Adress:</td>
<td><label for="address"></label>
<textarea name="address" id="address" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td>Gender:</td>
<td><p>
<label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_0" />
Male</label>
<br />
<label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_1" />
Female</label>
<br />
</p></td>
</tr>
<tr>
<td>Email Adress:</td>
<td><label for="email"></label>
<input type="text" name="email" id="email" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit" id="submit" value="Submit" />
<input type="reset" name="reset" id="reset" value="reset" /></td>
</tr>
</table>
</form>
<script src="form.js"></script>
<!-- InstanceEndEditable -->
<p> </p>
<div id="Footer">
Phone : 07 4779 1243|fax : 4779 1244|email : training@trainingzone.com.au
</div>
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
</script>
</body>
<!-- InstanceEnd --></html>