-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.79 KB
/
index.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
35
36
<!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"/>
<link rel = "SHORTCUT ICON" href = "images/favicon.ico" />
<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">
poem       <a href = "submit.html">submit</a> <!--      <del>rate</del>       <del>donate</del>-->       <a href = "about.html">about</a>
</div>
<div id="content">
<div id = "form1">
How are you feeling?<br /><br />
<div id = "buttons">
<a class = "newbutton" onclick = "getPoem(0),this.blur();" href = "#"><span>Ecstatic</span></a>
<a class = "newbutton" onclick = "getPoem(1),this.blur();" href = "#"><span>Romantic</span></a>
<a class = "newbutton" onclick = "getPoem(2),this.blur();" href = "#"><span>Reflective</span></a>
<a class = "newbutton" onclick = "getPoem(3),this.blur();" href = "#"><span>Furious</span></a>
<a class = "newbutton" onclick = "getPoem(4),this.blur();" href = "#"><span>Melancholy</span></a>
</div>
</div>
<p id = "poem">
Click a mood to generate a poem...
</p>
</div>
<div id = "footer">
<p>
© 2011 Erratic Verse
</body>
</html>