Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
63 lines (55 loc) · 1.81 KB

File metadata and controls

63 lines (55 loc) · 1.81 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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>
<head>
<meta >
<title>Timer</title>
<!-- Style -->
<link rel="stylesheet" href="css/style.css">
<!-- Meta tag -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Bruno Cheffer Belinassi">
<meta name="description" content="Timer project to train JavaScript">
<meta name="keywords" content="Cronometro, Temporizador, Timer">
</head>
<body>
<audio id="sound" src="sound/alarm.mp3" style="display: none;"></audio>
<div class="container">
<header>
<div class="menu">
<div class="link_menu">
<div class="menu-wraper">
<a href="index.html">Stopwatch</a>
</div> <!-- /menu-weaper -->
</div> <!-- /link_menu -->
<div class="link_menu">
<div class="menu-wraper menu_selected">
<a href="timer.html">Timer</a>
</div> <!-- /menu-weaper -->
</div> <!-- /link_menu -->
</div> <!-- /menu -->
</header>
<section>
<div class="timer_box">
<input class="select_time" id="t_hours" type="number" min="0" max="99" placeholder="00">
<p>:</p>
<input class="select_time" id="t_minutes" type="number" min="0" max="59" placeholder="00">
<p>:</p>
<input class="select_time" id="t_seconds" type="number" min="0" max="59" placeholder="00">
</div> <!-- /timer_box -->
<div id="id_timer_box" class="timer_box">
<h2 id="tm_hours">00</h2>
<p>:</p>
<h2 id="tm_minutes">00</h2>
<p>:</p>
<h2 id="tm_seconds">00</h2>
</div> <!-- /timer_box -->
<div id="btns">
<button class="btn" id="btn_reset">Reset</button>
<button class="btn" id="btn_start">Start</button>
</div>
</section>
</div> <!-- /container -->
<script src="js/functions.js"></script>
</body>
</html>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.