-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (133 loc) · 4.63 KB
/
index.html
File metadata and controls
139 lines (133 loc) · 4.63 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Stopwatch • Stopwatch.net</title>
<meta
name="description"
content="Online stopwatch with lap times. Easy to use and aesthetically pleasing."
/>
<meta name="title" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="#" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link
href="https://stopwatch.net/combine/0ecd68e179acd541cc4ca78c6dbc6b69-1627375089"
rel="stylesheet"
/>
<script src="https://stopwatch.net/combine/7cbf481e9f24424467d7d792fd7f5a1b-1627118065"></script>
<script
async=""
src="https://www.googletagmanager.com/gtag/js?id=UA-145688031-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-145688031-1");
</script>
</head>
<body class="page-index">
<!-- Header -->
<header id="layout-header">
<a href="#"
><img
src="https://stopwatch.net/themes/stopwatch/assets/images/logo_head.png"
alt="Stopwatch.NET"
/></a>
</header>
<!-- Content -->
<section id="layout-content">
<div class="container">
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="main-cont">
<div class="tab-menu">
<div class="item active-item">
<a href="#">Stopwatch</a>
</div>
<div class="item">
<a href="./timer.html">Timer</a>
</div>
</div>
<div class="stopw-cont">
<div class="unit">
<h2 class="time-digit" id="hours">00</h2>
<label>HRS</label>
</div>
<div class="unit">
<h2 class="time-digit" id="minutes">00</h2>
<label>MIN</label>
</div>
<div class="unit">
<h2 class="time-digit" id="seconds">00</h2>
<label>SEC</label>
</div>
<div class="unit">
<h2 class="time-digit" id="milliseconds">0000</h2>
<label>MS</label>
</div>
<div class="btn-wrap">
<button class="btn" id="btn-toggle" value="start">
Start
</button>
<button class="btn" id="btn-add-lap">Add Lap</button>
<button class="btn" id="btn-reset">Reset</button>
</div>
</div>
<div class="laps">
<label id="laps-header">LAPS</label>
<ul id="laps-list"></ul>
<label id="lap-info"
><em>To add a lap, press the "Add Lap" button.</em></label
>
</div>
<hr />
<div class="content px-5 py-3">
<p>
Stopwatch is a free, online stopwatch that's easy to use and
works great on mobile and browsers. It has a sleek design
that's easy to read at any time of day, even in dark
environments.
</p>
<p>
The way stopwatches work has not changed for a long time. Our
stopwatch is designed for the modern era with its easy-to-use
interface, intuitive features, and sleek, beautiful design.
Our interface is optimized for mobile and desktop usage,
making it comfortable to use whether you're in the office or
on the go.
</p>
<p></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="layout-footer">
<div class="container">
<div class="footer-logo">
<img
src="https://stopwatch.net/themes/stopwatch/assets/images/logo_footer.png"
alt=""
/>
</div>
<div class="footer-items">
<a href="#" target="_blank">Contact Us</a>
<a href="#">Privacy Policy</a>
</div>
</div>
</footer>
<script src="./javascript/stopwatch.js"></script>
</body>
</html>