-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (71 loc) Β· 2.01 KB
/
index.html
File metadata and controls
95 lines (71 loc) Β· 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/JS.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<script src="main.js" defer></script>
<title>JavaScript</title>
</head>
<body >
<div class="num" style="background-color: rgb(0, 255, 119);">
<div>
<center>
Number Counter
</center>
<div class="card">
<div id="count">
0
</div>
<button id="add">add</button>
<button id="re">reset</button>
<button id="sub">subtract</button>
</div>
</div>
</div>
<div class="dies-roll">
<div>
<center>Random Number Counter</center>
<div class="in">
<input type="text" placeholder="Enter the Range.." id="roll-input">
<button id="roll-btn" type="button">roll</button>
<div id="roll-out">
</div>
</div>
</div>
</div>
<div class="clockcon">
<div >
<center>A Live Clock</center>
<div class="clock" id="clock">
Clock is not working!..
</div>
</div>
</div>
<div class="todo">
<!-- hellohyvyvyvhvjhv onun80n8n8yn8n8n-->
<div>
<center>A ToDo list</center>
<div class="btn">
<div>
<input type="text" maxlength="160" class="inText" placeholder="!!." id="inputTask" >
<button onclick="addTask()">
ADD
</button >
</div>
</div>
<div class="ulcon">
<ul id="tL">
<li id="li">
Add a new Task here!.
<div class="divofbtn">
<button id="btnx" onclick="re()">X</button>
</div>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>