html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- Text effect created by Mǟɖ↻ôɖɆⱤ💉-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="video.css">
<h1 align="center" id="wordscroller" style="color: red; font-weight: bold; font-size: 40px;"></h1>
</head>
<body>
<div class="conteiner">
<iframe src="https://www.youtube.com/embed/JVHFcCJKqFo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</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
* {
margin: 0;
padding: 0;
box-sizing:
border-box;
}
body {
background-color: lightblue;
}
.conteiner {
max-width: 100%;
}
iframe {
width:100%;
height:300px;
}
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
22
23
alert("❤❤❤❤❤Mʏ Cᴏᴜɴᴛʀʏ❤❤❤❤❤\n")
function scroll(pos)
{
var txt = "ARMENIA";
var output = "";
var screen = document.getElementById("wordscroller");
for (var i = 0; i < pos; i++)
{
output += txt.charAt(i);
}
output += txt.charAt(pos);
screen.innerHTML = output;
pos++;
if (pos != txt.length)
{
window.setTimeout(function () { scroll(pos); }, 200);
}
else
{
window.setTimeout(function () { scroll(0); }, 5000);
}
}
scroll(0);
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run