css/e05BgImg.php

<html>
 <head>
  <title>e05Background-Img</title>
  <title>e02Syntax</title>
    <style type="text/css">
             /* Kommentare in css mit ungeschachtelten slash star nicht <!-- .... */
    body {background-image:url('e05WiwanniAussicht.jpg');background-repeat:repeat-x;background-attachment:fixed;background-color:yellow;} 
    p        /* selector = p */
    {        /* attribut Liste */
    color:red;
    text-indent:1cm;
    text-decoration:blink;
    } 
    </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
 <p style="color:green;font-weight:bold"> text p mit style green bold
 <h1>Source html</h1>
<?php highlight_file('e05BgImg.php') ?>
 </body>
</html>