-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.html
35 lines (26 loc) · 937 Bytes
/
file.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
<!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: Paste Text</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<img class="logo" src="imgs/RhymeTimeF.png" alt="RhymeTime Logo">
<h1>It's Time to Rhyme!</h1>
<h2>Upload the file you wish to submit:</h2>
<div class="center">
<div>
<p><i>Temporary place holder: file processer here (currently not styled)</i></p>
</div>
<div>
<input id="lnkInpt" class="display-box" type="text">
<input type="file" id="myFile" name="filename">
<input onclick="acceptInput()" id="btn" class="buttom" value="analyze" type="button">
</div>
</div>
</body>
</html>