-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.92 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Enter your description here"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Video Length Calculator</title>
</head>
<body>
</body>
<div class="container mt-5">
<h1 class="mb-4">Video Speed Calculator</h1>
<form id="timeForm" class="mb-4">
<div class="row mb-3">
<div class="col">
<label for="hoursInput" class="form-label">Hours:</label>
<input type="number" id="hoursInput" name="hoursInput" class="form-control" min="0" step="1">
</div>
<div class="col">
<label for="minutesInput" class="form-label">Minutes:</label>
<input type="number" id="minutesInput" name="minutesInput" class="form-control" min="0" step="1">
</div>
<div class="col">
<label for="secondsInput" class="form-label">Seconds:</label>
<input type="number" id="secondsInput" name="secondsInput" class="form-control" min="0" max="59" step="any">
</div>
</div>
<button type="submit" class="btn btn-primary">Calculate</button>
</form>
<div class="results">
<div>Result @1.25x: <span id="result1">-</span></div>
<div>Result @1.50x: <span id="result2">-</span></div>
<div>Result @1.75x: <span id="result3">-</span></div>
<div>Result @2.00x: <span id="result4">-</span></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/js/bootstrap.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>