This video demonstrate the difference between Div and span in html.
code:
<!DOCTYPE html>
<html>
<head>
<title>DIV and Span</title>
</head>
<body>
<div style="color:white;background-color: blue;"> Div is a block element
</div>
<div style="color:white;background-color: pink;" > Div is a block element
</div>
<span style="color:white;background-color: red;">Span is an inline element</span>
<span style="color:white;background-color: green;">Span is an inline element</span>
</body>
</html>
No comments:
Post a Comment