html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title> Chat Tube go</title>
</head>
<body>
<appication id= "VANSH">
<progress id= "loading"> </progress>
</application>
</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
#VANSH {width:100vw;
height:100vh;
position:absolute;
overflow:hidden;
background:;
margin-top:-2%;
margin-left:-2%;}
#cover {width :70%;
position:absolute;
top:15%; left:15%;}
#loading
{width:60%;}
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
window.onload= function(){
Directory =
[ "https://i.ibb.co/PMPXDGd/1600671185667.png" ]
let cover =document.createElement('img')
cover.src = Directory[0];
cover.id = "cover";
VANSH.appendChild(cover);
}; // end..😒
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run