blob: a3add175204aab339dedf8bb7df17b3fca69d5da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<script>
"use strict";
const html = `
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="internal-loaded.css">
</head>
`;
onload = function() {
document.write(html);
}
</script>
|