height is a property in CSS used to determine the height of a block.
width is a property in CSS used to determine the width of a block.
Example
HTML
<h1>Hello<h1>
CSS
h1 {
height: 50px;
width: 100px;
background: lightcoral;
}
Result
Let's try setting up for Height: