-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
37 lines (37 loc) · 1017 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
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bionic Reader - Read Blazingly Fast</title>
<meta name="description" content="Bionic Reader - Read Blazingly Fast" />
<link rel="stylesheet" href="style.css" />
<link
rel="shortcut icon"
href="https://img.icons8.com/?size=256&id=12995&format=png"
type="image/x-icon"
/>
</head>
<body>
<header>
<h1>BionicReader</h1>
</header>
<main>
<section class="text-input">
<textarea
id="textarea"
rows="5"
placeholder="Paste or enter your text here"
></textarea>
<button id="submit-btn" onclick="bionicRead()">SUBMIT</button>
</section>
<br />
<hr />
<section class="formatted-text">
<h2>Formatted Text:</h2>
<div id="below"></div>
</section>
</main>
<script src="app.js"></script>
</body>
</html>