-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.html
More file actions
91 lines (87 loc) · 3.93 KB
/
timer.html
File metadata and controls
91 lines (87 loc) · 3.93 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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>Utility Apps</title>
<link rel="stylesheet" href="./styles.css">
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="icon" href="laptop-code-solid.svg" sizes="any" type="image/svg+xml">
</head>
<body>
<nav>
<ul class="menu">
<li class="logo"><a href="index.html">Utility Apps</a></li>
<li class="item has-submenu">
<a tabindex="0">Converter</a>
<ul class="submenu">
<li class="subitem"><a href="number-base-converter.html">Number Base Converters</a></li>
<li class="subitem"><a href="length-converter.html">Length Converter</a></li>
<li class="subitem"><a href="temperature-converter.html">Temperature Converter</a></li>
<li class="subitem"><a href="language-converter.html">Language Converter</a></li>
</ul>
</li>
<li class="item has-submenu">
<a tabindex="0">Encoder-Decoder</a>
<ul class="submenu">
<li class="subitem"><a href="url-encoder-decoder.html">URL-Encoder-Decoder</a></li>
<li class="subitem"><a href="base64-encoder-decoder.html">Base64 Encoder-Decoder</a></li>
<li class="subitem"><a href="hash-generator.html">Hash-Generator</a></li>
</ul>
</li>
<li class="item"><a href="ip-finder.html">IP Address finder</a></li>
<li class="item"><a href="rgb-hex-converter.html">RGB/Hex Converter</a></li>
<li class="item"><a href="text-tools.html">Text Tools/String Utility</a></li>
<li class="item has-submenu">
<a tabindex="0">Time Utility</a>
<ul class="submenu">
<li class="subitem"><a href="timestamp-converter.html">Timestamp Converter</a></li>
<li class="subitem"><a href="timer.html">Timer</a></li>
<li class="subitem"><a href="stopwatch.html">Stopwatch</a></li>
</ul>
</li>
<li class="toggle"><a href="#"><i class="fas fa-bars hamburger" ></i></a></i></li>
</ul>
</nav>
<div class="below-navbar">
<div class="input-output-group ">
<h1>Timer</h1>
<div class="date-input">
<table>
<thead>
<th>
<h2>Hr:-</h2>
</th>
<th>
<h2>Min:-</h2>
</th>
<th>
<h2>Sec:-</h2>
</th>
</thead>
<tbody>
<tr>
<td><input type="text" class='date-input-element' id='hour' value='' placeholder='hour'>
</td>
<td><input type="text" class='date-input-element' id='minute' value='' placeholder='min'>
</td>
<td><input type="text" class='date-input-element' id='seconds' value='' placeholder='sec'>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="button-group">
<input type="button" id='start-timer' class='button' value='Start'>
<input type="button" id='reset-timer' class='button' value='Reset'>
</div>
</div>
<script src="./script.js"></script>
<script src='./timer.js'></script>
<script src="https://kit.fontawesome.com/b5652605f0.js" crossorigin="anonymous"></script>
</body>
</html>