p text unter 1 - h1
p text unter 1.1 - h2 und noch eine zeile
text p mit style green bold
<html>
<head>
<title>e04ExternalInline</title>
<link rel="stylesheet" type="text/css" href="e04External.css" />
</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('e04ExternalInline.php') ?>
<h1>Source css</h1>
<?php highlight_file('e04External.css') ?>
</body>
</html>
/* Kommentare in css mit ungeschachtelten slash star nicht <!-- .... */
p /* selector = p */
{ /* attribut Liste */
color:purple;
text-align:right;
}