HTML Division (div) tags are widely used general tag for dividing and setting blocks with the help of css coding. Div based html codings are the effective way to design web pages. Compared with table tag div tag takes less memory.
The HTML syntax for Div tags,
The HTML example for Div tags,
CSS Styles are more and more important for div tag, without styles we cant do good with div tag.
The above example easy to learn div tag.
Thanks.
The HTML syntax for Div tags,
<div>Freshersblog</div>
The HTML example for Div tags,
<html>
<head>
<title>Welcome to Freshersblog</title>
</head>
<body>
<div>
Welcome to Freshersblog
</div>
</body>
</html>
<head>
<title>Welcome to Freshersblog</title>
</head>
<body>
<div>
Welcome to Freshersblog
</div>
</body>
</html>
CSS Styles are more and more important for div tag, without styles we cant do good with div tag.
The above example easy to learn div tag.
Thanks.