-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
47 lines (47 loc) · 1.03 KB
/
main.html
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
<!doctype html>
<html>
<head>
<title>Time Converter</title>
<script src="main.js"></script>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="title">
<h1>Time Converter</h1>
</div>
<div id="tutorial">
<h3>1- Activate app</h3>
<h3 class="highlight" id="highlightText">2- Highlight the text</h3>
<div id="clickMessageText">
<h3>3- Click mouse wheel</h3>
<span title="Mouse Wheel" class="scroll-btn">
<a href="#">
<span class="mouse">
<span>
</span>
</span>
</a>
</span>
</div>
</div>
<div id="onnOff">
<div class="support"></div>
<div class="clock">
<div class="numbers">
<ul>
<li>12</li>
<li>3</li>
<li>6</li>
<li>9</li>
</ul>
</div>
<div class="clockwise">
<input type="checkbox" id="onOffButton">
<label for="onOffButton">
<div id="tick_mark"></div>
</label>
</div>
</div>
</div>
</body>
</html>