<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Mijn eerste webpagina</title>
<style type="text/css">
#div1{
background-color: #99FFFF;
height:300px;
width:250px;
border-top:1px dotted #000099;
border-left:1px dotted #000099;
border-right:1px dotted #000099;
}
#div2{
background-color: #FFCC33;
height:300px;
width:250px;
border:1px solid #000099; }
.p1{
margijn:0px;
color: red;
font-family: verdana;
font-size: 12px;
background-color:#dddddd;
border-bottom:1px dotted #000099;
padding:5px 5px 5px 5px;}
.p2{
margin:0px;
color: #330099;
font-family: verdana;
font-size: 12px;
background-color:#dddddd;
border-bottom:1px dotted #000099;
padding:5px 5px 5px 5px;}
</style>
</head>

<body>
<div id="div1">
<p class="p1">Dit is een stukje tekst als illustratie bij mijn eerste webpagina. Dit is een onderdeel van oefeningen betreffende het gebruik van het div element.
</div>
<div id="div2">
<p class="p2">Dit is een tweede stukje tekst als illustratie bij mijn eerste webpagina. Dit is een onderdeel van oefeningen betreffende het gebruik van meerdere div element.
</div>

</body>

</html>