html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div></div>
<div id = "one"></div>
<img src="https://www.dropbox.com/scl/fi/0matyaykpybu2xxevwkfy/b8d880c8439eedc20aac2266e5f8d357.jpg?rlkey=3nupbc77hi7gx79pmswfix3bd&st=6gimsl15&&raw=1">
<button onclick='alert("∆~Thanks for 150 amazing Followers~∆..May Allah bless You all with long life and every happiness of life🥰😃")'>click</button>
</body>
</html>
css
css
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
body{
background-color:rgb(70,87,90,0.4)
}
div{
height:100px;
width:100px;
background-color:gray;
position:absolute ;
top:50px;
left:120px;
border-radius:50%;
border:5px solid red;
border-right:5px solid Yellow;
border-left:5px solid Orange;
border-top:5px solid Purple;
animation-name:circle ;
animation-duration: 2s;
animation-delay: 10px;
animation-timing-function: ease-in;
animation-iteration-count: infinite;
}
@keyframes circle {
from{
transform:rotate(0deg);
js
js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
alert("Enter num 7 to pass")
var a = new Audio("https://www.dropbox.com/scl/fi/nq9ggqts9aiubf8xxz5dj/VID-20250403-WA0003.mp4?rlkey=drpu029y1499sw5gknbuoot90&st=nruii9c5&dl=1");
window.addEventListener('click',() => {
a.play();
});
let gamenum= 7;
let username=prompt("Enter any number(1 to 10)");
while(username != gamenum ){
username =prompt("you enterd the wrong number");;
}
BROWSER
Console
Run