<!DOCTYPE html>
<html>
<head>
<title>height and width properties</title>
<style>
body {
color:#000000;
background-color:#ffffff;
font-family:arial, verdana, sans-serif;
font-size:12px;}
p.one {
width:200px; height:100px;
padding:5px; margin:10px;
border-style:solid; border-color:#000000; border-width:2px;}
p.two {
width:300px; height:100px;
padding:5px; margin:10px;
border-style:solid; border-color:#000000; border-width:2px;}
</style>
</head>
<body>
<h1>height & width Properties</h1>
<p class="one">This paragraph should be 200 pixels wide by 300 pixels high.</p>
<p class="two">This paragraph should be 300 pixels wide by 100 pixels high.</p>
</body>
</html>