-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (53 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rhyme Time</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div>
<img class="logo" src="imgs/RhymeTimeF.png" alt="RhymeTime Logo">
<h1>It's Time to Rhyme!</h1>
<h2> <i>Transcribes the lyrics from any source to analyze rhyming patterns through AI! </i>
</h2>
</div>
<div class="center">
<table>
<tr height="40" colspan="3"></tr>
<tr>
<td width="300">
<li>Choose your submission format</li>
<li>Import your submission</li>
<li>Click submit!</li>
</ol>
</td>
<td width="5"></td>
<td>
<div class="container">
<div class="button">
<p>Select format</p>
<img src="https://svgshare.com/i/8u6.svg" alt="" class="arrow">
</div>
<div class="dropdown">
<a href="text.html" id="txt">Text paste
<span></span>
</a>
<a href="link.html" id="link">Link paste
<span></span>
</a>
<a href="file.html" id="file">File upload
<span></span>
</a>
</div>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>