<!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">
div{
background-color: #99FFFF;
height:300px;
width:250px;
border:1px dotted #000099;}
p {
margin: 0px;
color: red;
font-family: verdana;
font-size: 12px;
background-color:#dddddd;
border-bottom:1px dotted #000099;
padding:5px 5px 5px 5px;}
</style>
</head>


<body>
<div >
<p >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>


</body>

</html>