36 lines
474 B
HTML
36 lines
474 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>test</title>
|
|
<!--
|
|
<script>
|
|
// No indent in a comment
|
|
if (true) {
|
|
do not change;
|
|
}
|
|
</script>
|
|
-->
|
|
|
|
<style type="text/css">
|
|
h1 {
|
|
font-family: 'Spinnaker', sans-serif;
|
|
}
|
|
</style>
|
|
<script>
|
|
var a = 4 < 5;
|
|
function() {
|
|
if (x > 75)
|
|
return 25;
|
|
return "hello";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
<!--
|
|
Local Variables:
|
|
mhtml-tag-relative-indent: nil
|
|
End:
|
|
-->
|
|
</html>
|