css/e02Syntax.php

<html>
 <head>
  <title>e02Syntax</title>
    <style type="text/css">
             /* Kommentare in css mit ungeschachtelten slash star nicht <!-- .... */
    p        /* selector = p */
    {        /* attribut Liste */
    color:red;
    text-align:center;
    } 
    </style>
 </head>
 <body>
 <h1> 1 Heading h1 </h1>
 <p> p text unter 1 - h1
  <h2> 1.1 Heading h2</h2>
 <p> p text unter 1.1 - h2
        <!-- kommentar -->
    und noch eine zeile
 <h1>Source</h1>
<?php highlight_file('e02Syntax.php') ?>
 </body>
</html>