html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="ashwin.css">
</head>
<body>
<h1 class="mid">Your Webpage loading </h1>
<p>plaese wait a secend</p>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<p class="wel">Welcome</p>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
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{
padding:0;
margin:0;
background: black;
}
ul{
position: absolute;
top: 50%;
left : 40%;
transform: translate(-50px,-50px);
display:flex;
}
ul li {
list-style:none;
width: 6px;
height : 20px;
background: #262626 ;
margin : 0 4px;
animation : animate 1.1s infinite alternate;
}
ul li:nth-child(1){
color: green;
box-shadow:;
}
@keyframes animate {
0%{
Enter to Rename, Shift+Enter to Preview
js
js
1
alert (" --> ({LIKE}) <--")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run