HTML div Tag

HTML is used to create a div in html document .

div is like a box that contains any things

Example 01

<body>

<div> hey  i am div</div>

</body>

CSS Code

div{

  border:1px solid red;

  color: blue;

}

Try above code


Example 02

<body>

<div>  hello  this div have width and height by css </div>

</body>

CSS Code

div{

border:1px solid red;

color :blue;

width:120px;

height :120px

}

This div like a square

Try above code


Example 03

Border style of div

<body>

<div> div have border style </div>

</body>

CSS Code

div{

border:1px solid red;

width:120px;

height:120px;

border-radious: 18px;

}

Try above code