-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.06 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
This is an HTML comment
You can write text in a comment and the content won't be visible in the page
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<!--
This is the page head - it contains info the browser uses
Like the title, which appears on the browser tab but not inside the page
Further down you'll see the content that displays in the page
-->
<title>Hello World!</title>
<!-- The website stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- The website JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<div id="lovense-output">
</div>
<div class="container">
<div id="tachometer">
<div class="ii">
<div><b><span class="num_1">0</span></b></div>
<div><b></b></div>
<div><b><span class="num_2">1</span></b></div>
<div><b></b></div>
<div><b><span class="num_3">2</span></b></div>
<div><b></b></div>
<div><b><span class="num_4">3</span></b></div>
<div><b></b></div>
<div><b><span class="num_5">4</span></b></div>
<div><b></b></div>
<div><b><span class="num_6">5</span></b></div>
<div><b></b></div>
<div><b><span class="num_7">6</span></b></div>
<div><b></b></div>
<div><b><span class="num_8">7</span></b></div>
<div><b></b></div>
<div><b><span class="num_9">8</span></b></div>
</div>
<div id="redline"></div>
<div class="line" id="rotateline"></div>
<div class="pin" id="rotatepin"><div class="inner"></div></div>
</div>
</div>
</body>
</html>