-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (58 loc) · 2.5 KB
/
index.html
File metadata and controls
63 lines (58 loc) · 2.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS Files Start -->
<link rel="stylesheet" href="css/custom/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- CSS Files Start -->
<!-- Font Links Start -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Changa:wght@500;800&display=swap" rel="stylesheet">
<!-- Font Links End -->
<title>Kitchen Timer</title>
</head>
<body class="d-flex h-100 text-center bg-dark cc_cursor">
<section class="container bg-warning mt-5 py-5">
<div class="row">
<div class="col my-3">
<h1 class="text-center text-uppercase">
Kitchen Timer
</h1>
<form id="time-check-form" class="row g-3 justify-content-center">
<div class="col-auto">
<label for="number" class="label-text mt-3">
HOUR
</label>
<input type="number" id="hour" class="form-control" max="99" min="0" value="0">
</div>
<div class="col-auto">
<label for="number" class="label-text mt-3">
MINUTES
</label>
<input type="number" id="minute" class="form-control" max="60" min="0" value="0">
</div>
<div class="col-auto">
<label for="number" class="label-text mt-3">
SECONDS
</label>
<input type="number" id="second" class="form-control"max="60" min="0" value="0">
</div>
<div class="col-12 justify-content-center flex-row d-flex mt-5">
<button type="submit" id="set-time" class="btn btn-primary mb-3">SET</button>
</div>
<div class="row justify-content-center">
<div id="stopContinueDiv" class="col-auto">
</div>
</div>
</form>
</div>
</div>
</section>
<!-- Script Files Start -->
<script src="js/app.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<!-- Script Files End -->
</body>
</html>