21 lines
628 B
HTML
21 lines
628 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script>
|
|
window.addEventListener('message',(e)=>{
|
|
var div = document.createElement('div');
|
|
div.innerHTML='message'+e.data;
|
|
document.body.appendChild(div);
|
|
div.scrollIntoView({ behavior: 'smooth'});
|
|
},true);
|
|
window.addEventListener('load',()=>{
|
|
var div = document.createElement('div');
|
|
div.innerHTML='JAVASCRIPT works'
|
|
document.body.appendChild(div);
|
|
div.scrollIntoView({ behavior: 'smooth'});
|
|
},false);
|
|
</script>
|
|
<a href='https://html5test.co/'>https://html5test.co/</a>
|
|
<h1> this is html <h1>
|
|
<h2> this is a h2</h2>
|
|
<img src='https://wald.alexmahr.de/images/bear.avif'>
|
|
</html>
|