To set Height of an Html Elements use CSS height property.

To set Width of an Html Elements use CSS width property.

Example

<html>
<head>
<style>
div{
    border:1px solid black;
    height:100px;
    width:400px;
}
</style>
</head>
<body>
<div>
CSS height & Width example
</div>
</body>
</html>