2021-07-12 13:12:47 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>This is a test page :^)</title>
|
2021-07-14 23:25:34 +00:00
|
|
|
<script>
|
|
|
|
let foo = 2;
|
|
|
|
var bar = 3;
|
|
|
|
if (foo < bar)
|
|
|
|
alert("Check happens with HTML special <characters>.");
|
|
|
|
let regex = /</g;
|
|
|
|
</script>
|
2021-07-12 13:12:47 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>This is the first paragraph.</p>
|
|
|
|
<p foo="bar">The second paragraph has an attribute!</p>
|
2021-07-14 22:43:18 +00:00
|
|
|
<!-- This is a standard HTML comment. -->
|
|
|
|
<!----- This comment has a few too many dashes. ----->
|
|
|
|
<!----> <!-- <= There is an empty comment over there. -->
|
2021-07-12 13:12:47 +00:00
|
|
|
</body>
|
|
|
|
</html>
|