zeek19.html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Height,Width,Border and Background</title>
<style>
#firstPara{background-color: red;
height:80px; /*height means area of height of paragraph increases*/
width:800px /*width means width of area of paragraph*/
}
</style>
</head>
<body>
<h1>This is heading</h1>
<p id="firstPara">This is para</p>
</body>
</html>
Comments
Post a Comment