forked from CSE110-SP21/Lab5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.46 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
<!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>Lab 5 - Meme Generator</title>
<!-- Main CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="content-wrapper">
<header>
<h1>Lab 5 - Meme Generator</h1>
</header>
<main>
<div id="image-wrapper">
<canvas id="user-image" alt="Select Image" height="400" width="400">
</div>
<form id="generate-meme">
<input type="file" name="image" id="image-input" accept="image/*"><br>
<input type="text" name="textTop" id="text-top" placeholder="Top Text"><br>
<input type="text" name="textBottom" id="text-bottom" placeholder="Bottom Text"><br>
<button type="submit">Generate</button>
<div id="button-group">
<button type="reset" disabled>Clear</button>
<button type="button" disabled>Read Text</button>
</div>
<select name="voices" id="voice-selection" disabled>
<option value="none" selected>No available voice options.</option>
</select>
<div id="volume-group">
<img src="icons/volume-level-3.svg" alt="Volume Level 3">
<input type="range" min=0 max=100 value=100>
</div>
</form>
</main>
</div>
<!-- Main Script -->
<script src="script.js" type="module"></script>
</body>
</html>