-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.63 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cartoon Video Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>CreateMyCartoon</h1>
</header>
<main>
<div id="left-column">
<label for="cartoon-style-buttons">Select a cartoon style:</label>
<div id="cartoon-style-buttons">
<button aria-label="buttons" class="cartoon-style-button mickey-mouse" data-style="mickey-mouse"></button>
<button aria-label="buttons" class="cartoon-style-button spongebob" data-style="spongebob"></button>
</div>
<label for="user-prompt">Enter the value you want your kids to learn:</label>
<div class="prompt-container">
<input type="text" id="user-prompt" placeholder="Enter the value you want your kids to learn" rows="2" />
<button id="generate-button">Generate Cartoon</button>
</div>
<div id="generated-video">
<video id="video" controls>
<source src="video.mp4" type="video/mp4">
</video>
</div>
<span class="videoTitle"></span>
<span class="videoDescription"></span>
</div>
<div id="right-column">
<h2>Check these out!</h2>
<div class="loader loaderBig"></div>
<!-- Add more video thumbnails here -->
</div>
</main>
<!-- Your existing HTML code -->
<!-- Add the following script tag to include the JavaScript code -->
<script src="script.js" defer></script>
</body>
</html>