1 Heading h1

text unter 1 - h1

1.1 Heading h2

text unter 1.1 - h2

h1 in html

Source /home/ch45859/web/wlkl.ch/public_html/inf/js/j03window.php

<html>
 <head>
  <title>jo3Window</title>
 </head>
 <body>
 <h1> 1 Heading h1 </h1>
 text unter 1 - h1
  <h2> 1.1 Heading h2</h2>
 text unter 1.1 - h2
<h1>h1 in html</h1>
<script type="text/javascript">
// document.write('<h2> document.write in javascript </h2> <ol>');
obj = window;
document.write('window object<ul>');
for (var v in obj) {
    document.write('<li>' + typeof obj[v] + ' ' + v + " = " + obj[v] + '</li>');
}
document.write('</ul>');

</script>
 <h1>Source <?php echo __file__; ?> </h1>
<?php highlight_file(__file__) ?>
 </body>
</html>