-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./Public/Logo.png" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Narrator +</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/dff522054b.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="hero">
<div class="title-container">
<h1>Narrator <span>+</span></h1>
<button onclick="window.open('https://chromewebstore.google.com/detail/narrator-+/djclbfgfmccddcmdlakdcogeknbeagdc', '_blank')">Add Extension</button>
</div>
<div id="textContainer">
<textarea name="" placeholder="Write anything here ..." id="" cols="30" rows="10"></textarea>
</div>
<div class="row">
<select></select>
<button id="listen"><i class="fa-solid fa-play" style="color: #ffffff;"></i> Listen</button>
<button id="pause" style="display:none;"><i class="fa-solid fa-pause" style="color: #ffffff;"></i> </button>
<button id="resume" style="display:none;"><i class="fa-solid fa-play" style="color: #ffffff;"></i> </button>
<button id="stop" style="display:none;"><i class="fa-solid fa-stop" style="color: #ffffff;"></i> </button>
</div>
</div>
<footer>
<p>Made by Sherwin with ❤️</p>
</footer>
<script src="script.js"></script>
</body>
</html>