-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit.html
34 lines (33 loc) · 1.63 KB
/
submit.html
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
<!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"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Erratic Verse - a poem generator </title>
<link type="text/css" rel="stylesheet" href="css/main.css"/>
<script type = "text/javascript" src = "main.js"></script>
<!-- © 2011 Erratic Verse-->
</head>
<body>
<div id="title"><img src="images/Header.png" title = "Erratic Verse - A poem generator" alt = "Erratic Verse - A poem generator" />
</div>
<div id = "nav">
<a href = "index.html">poem</a>       submit <!--      <del>rate</del>       <del>donate</del>-->       <a href = "about.html">about</a>
</div>
<div id="content">
<p id = "poem">
<span id = "error">Submit a line of poetry:</span> <span id=myCounter>40</span><br /><br />
<input type = "text" id = "textbox" name = "text" value = "" onKeyPress="return taLimit(this)" onKeyUp="return taCount(this,'myCounter')" />
<select name="mydropdown">
<option value="Ecstasy">Ecstasy</option>
<option value="Romance">Romance</option>
<option value="Reflection">Reflection</option>
<option value="Fury">Fury</option>
<option value="Melancholy">Melancholy</option>
</select>
<input type = "button"value = "Submit" onClick = "submitPoem();"/>
</p>
</div>
<div id = "footer">
<p>
© 2011 Erratic Verse
</body>
</html>