1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
272 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>e</title>
<style>
[e] {
word-wrap:break-word;
}
</style>
</head>
<body>
<h1 e>e</h1>
<script>
let e = document.querySelector("[e]");
setInterval(() => {
e.innerHTML += "e";
}, 1);
</script>
</body>
</html>