-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
66 lines (66 loc) · 1.85 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
<html>
<head>
<title>speakToWebjs</title>
<link rel="stylesheet" type="text/css" href="/css/normalize.css">
<style type="text/css">
#results {
width: 1200px;
height: 200px;
border: 1px solid #222;
}
</style>
</head>
<body style="height: 1000px;">
<div>
<a href="http://github.com">github</a>
</div>
<form action="/html/tags/html_form_tag_action.cfm" method="get">
<fieldset>
<legend>Your Details</legend>
<div>
<label for="first_name">First Name:</label>
<br>
<input type="text" name="first_name" value="" maxlength="100" />
<br></div>
<div>
<label for="lunch">Lunch:</label>
<br>
<input type="radio" name="lunch" value="pasta" />
Pasta
<input type="radio" name="lunch" value="fish" />
Fish
</div>
<div>
<label for="drinks">Drinks:</label>
<br>
<input type="checkbox" name="drinks" value="beer" />
Beer
<input type="checkbox" name="drinks" value="wine" />
Wine
</div>
<div>
<label for="city">Preferred City:</label>
<br>
<select name="city">
<option value ="sydney">Sydney</option>
<option value ="melbourne">Melbourne</option>
<option value ="cromwell">Cromwell</option>
<option value ="queenstown">Queenstown</option>
</select>
</div>
<div>
<label for="comments">Comments:</label>
<br>
<textarea rows="3" cols="20" name="comments"></textarea>
</div>
<div>
<input type="submit" value="Submit" />
</div>
</fieldset>
</form>
<script type="text/javascript" src="/js/library/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="/js/library/jquery-ui.js"></script>
<script type="text/javascript" src="/js/library/require.js"></script>
<script type="text/javascript" src="/js/speakToWeb/speakToWeb.js"></script>
</body>
</html>