-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (40 loc) · 1.39 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Poetry Generator</title>
<!-- Added a link to our external stylesheet-->
<link rel="stylesheet" href="resources/css/reset.css">
<link rel="stylesheet" href="resources/css/style.css">
<!--added a link to google fonts-->
<link href="https://fonts.googleapis.com/css?family=Averia+Serif+Libre:400,400i,700,700i|Homemade+Apple" rel="stylesheet">
</head>
<body class="column">
<header>
<h1>Random Poetry is Fun</h1>
</header>
<div class="wrapper column center">
<div class="box column center" id="lineGen">
<h2>
Add new random lines
</h2>
<input type="text" id="lineAdd"> -- Add a line</input>
<button id="lineBtn">Save line</button>
</div>
<div class="box column center" id="poemGen">
<div>
<h2>Generate your poem</h2>
<input type="number" id="lineNumber"> -- how many lines do you want?</input>
<button id="genPoem">Generate Poem</button>
</div>
<div id="poem" class="text">
</div>
</div>
</div>
<footer>
</footer>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="resources/js/js.js"> </script>
</body>
</html>