-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 954 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Lyric Generator</title>
<link rel="stylesheet" href="./foundation.min.css">
</head>
<body>
<div class="grid-container">
<h1>Lyric Generator</h1>
<textarea id="lyrics" name="lyrics" rows="20" placeholder="Enter lyrics here..."></textarea>
<br>
<button id="learn" type="button" class="hollow button expanded">Learn</button>
<button id="generate" type="button" class="hollow success button expanded">Generate</button>
<p id="generated" style="text-align: center;"></p>
</div>
<script src="./jquery.js" defer></script>
<script src="./what-input.js" defer></script>
<script src="./foundation.min.js" defer></script>
<script src="./main.js" defer></script>
</body>
</html>