Skip to content

Commit 22325a1

Browse files
committed
modified
1 parent a1034bd commit 22325a1

1 file changed

Lines changed: 14 additions & 7 deletions

File tree

index.html

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
<!-- <script src="promises.js"></script> -->
1111
<!-- <script src="./index.js"></script> -->
1212
<!-- <script defer src="./Dom.js"></script> -->
13-
<script defer src="./AsyncAndAwait.js"></script>
13+
<!-- <script defer src="./AsyncAndAwait.js"></script> -->
14+
<script defer src="./EventListner.js"></script>
15+
1416
<title>Document</title>
1517
<style>
1618
div.clock {
@@ -29,26 +31,29 @@
2931
transition: 0.2s ease-out;
3032
}
3133

32-
div.second::after{
34+
div.second::after {
3335
content: "";
3436
width: 75px;
3537
height: 4px;
3638
background-color: yellow;
3739
position: absolute;
3840
border-end-end-radius: 10px;
3941
}
40-
div.minute{
42+
43+
div.minute {
4144
transition: 0.2s ease-out;
4245
}
43-
div.minute::after{
46+
47+
div.minute::after {
4448
content: "";
4549
width: 75px;
4650
height: 4px;
4751
background-color: black;
4852
position: absolute;
4953
border-end-end-radius: 10px;
5054
}
51-
div.cover{
55+
56+
div.cover {
5257
width: 15px;
5358
height: 15px;
5459
background-color: black;
@@ -60,13 +65,15 @@
6065
</head>
6166

6267
<body>
63-
<h1 id="timer">0</h1>
68+
<!-- <h1 id="timer">0</h1>
6469
<div class="clock">
6570
<div class="cover"></div>
6671
<div class="second"></div>
6772
<div class="minute"></div>
6873
</div>
69-
<ul></ul>
74+
<ul></ul> -->
75+
<!-- <button onclick="handleClick('hi')">Click</button> using this we can also add click event on button -->
76+
<button>Click</button>
7077
</body>
7178

7279
</html>

0 commit comments

Comments
 (0)