-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Video Timer</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1>Video Timer</h1>
<div class="settings">
<label for="startTime">Start Time in Seconds:</label>
<input type="number" id="startTime" min="0" placeholder="e.g. 120" />
<label for="time">Max Time in Seconds:</label>
<input type="number" id="time" min="0" placeholder="e.g. 120" />
<label for="font">Font:</label>
<input type="text" id="font" placeholder="e.g. Arial" />
<label for="size">Font Size:</label>
<input type="number" id="size" min="0" placeholder="e.g. 24" />
<label for="bgColor">Background Color:</label>
<input type="color" id="bgColor" value="#000000" />
<label for="fontColor">Font Color:</label>
<input type="color" id="fontColor" value="#FFFFFF" />
<button id="startBtn">Start Timer</button>
</div>
<div class="timer-container">
<div class="timer" id="timer"></div>
</div>
<button id="downloadBtn" disabled>Download Video</button>
</div>
<script src="app.js"></script>
</body>
</html>