Files
2018-08-02 17:53:23 +01:00

15 lines
333 B
HTML

<html>
<head>
<title>Title</title>
<script src="tst.js"></script>
<script>alert
("Hello, world!");</script>
<script>
alert("Hello " +
"again!"
);
</script>
</head>
<body onload="alert('And again!');">
</body>
</html>