mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-17 09:42:38 +03:00
12 lines
228 B
HTML
12 lines
228 B
HTML
|
<html>
|
||
|
<head><title>Inline Script Simple Document Write</title></head>
|
||
|
<body>
|
||
|
<h1>Inline Script Simple Document Write</h1>
|
||
|
<p>Before</p>
|
||
|
<script>
|
||
|
document.write("<p>Hello World!<p>");
|
||
|
</script>
|
||
|
<p>Afterwards</p>
|
||
|
</body>
|
||
|
</html>
|