-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>windows-mods</title>
</head>
<body id="body">
<div class="box" id="box1">
<p class="text" id="cpu"></p>
</div>
<div class="box" id="box2">
<p class="text" id="ram"></p>
</div>
<div class="box" id="box3">
<p class="text" id="timepc"></p>
</div>
<div class="box" id="box4">
<p class="text" id="fps"></p>
</div>
<div id="switches">
<p class="btntext">CPU: <input id="cput" type="checkbox" checked="checked"></p>
<p class="btntext">RAM: <input id="ramt" type="checkbox" checked="checked"></p>
<p class="btntext">Time On PC: <input id="timepct" type="checkbox" checked="checked"></p>
<p class="btntext">FPS: <input id="fpst" type="checkbox" checked="checked"></p>
<p class="btntext">Color Theme: R:<input class="input" type="number" id="r" onblur="blurredr()"> G:<input class="input" type="number" id="g" onblur="blurredg()"> B:<input class="input" type="number" id="b" onblur="blurredb()"></p>
</div>
<div id="body2">
<div class="divv" id="divv">
<p id="settings">Settings</p>
</div>
</div>
<canvas id="ctx"></canvas>
<script src="boxes.js"></script>
<script src="draggable.js"></script>
<script src="settings.js"></script>
<script src="fps.js"></script>
</body>
</html>