-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.57 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JS Timer</title>
<!-- Importing Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@100;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap" rel="stylesheet">
<!-- Importing Local CSS -->
<link rel="stylesheet" href="style.css">
<!-- Importing Font Awesome Icons -->
<script defer src="node_modules/@fortawesome/fontawesome-free/js/brands.js"></script>
<script defer src="node_modules/@fortawesome/fontawesome-free/js/solid.js"></script>
<script defer src="node_modules/@fortawesome/fontawesome-free/js/fontawesome.js"></script>
</head>
<body>
<div class="settings-icon">
<i class="fas fa-sliders-h icon"></i>
</div>
<!-- <div> used for the darken effect -->
<div class="dark-overlay">
<div class="settings-box">
<label for="background-url">Background URL</label>
<input type="text" name="background-url" class="background-url">
<label for="settings-position">Settings Icon Position</label>
<select name="settings-position" class="settings-position">
<option value="topleft">Top Left</option>
<option value="topright">Top Right</option>
<option value="bottomleft">Bottom Left</option>
<option value="bottomright">Bottom Right</option>
</select>
<button type="button" name="save-settings" class="save-settings">Save</button>
</div>
</div>
<!-- Main Wrap -->
<section class="main-section">
<div class="timer">
<div class="timer-time">
<span class="hours">00</span>
<span class="minutes">00</span>
<span class="seconds">00</span>
</div>
<div class="timer-settings">
<input class="input-hours" type="text" name="hours" placeholder="H" maxlength="2">
<input class="input-minutes" type="text" name="minutes" placeholder="M" maxlength="2">
<input class="input-seconds" type="text" name="seconds" placeholder="S" maxlength="2">
<button class="timer-start" type="button" name="timer-start">Start</button>
</div>
</div>
</section>
<!-- Importing Local JavaScript -->
<script src="script.js" charset="utf-8"></script>
</body>
</html>