-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (30 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href='https://fonts.googleapis.com/css?family=Bilbo+Swash+Caps' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="js/main.js"></script>
<meta charset="UTF-8">
<title>Poetry Bot</title>
</head>
<body>
<div id="page">
<div id="header">
<div id="title"><h1>Poetry Bot</h1></div>
</div>
<div id="body">
<div id="poemParamters">
<p>Topics: <span id="poemTopics" contenteditable="true"></span></p>
</div>
<div id="generatePoem">
<button id="limerick" class="poemButton">Limerick</button>
<button id="haiku" class="poemButton">Haiku</button>
<button id="sonnet" class="poemButton">Sonnet</button>
<button id="freeverse" class="poemButton">Free Verse</button>
</div>
<div id="poemOutput"><p id="poem"></p></div>
</div>
</div>
</body>
</html>