zeek9.html
<!-- Block elements occupy entire Space.For example:<p></p>,<ul></ul>,<div></div>
This is a paragraph.
This is also a paragraph
Paragraph is a block Element.
Inline elements occupy only space they require.For example:<span></span>,<img>,<a></a>
,<em></em>
This is span. This is also a span. Span is an inline element. -->
<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>Inline and Block Elements</title>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is also a paragraph</p>
<p>Paragraph is a block Element.</p>
<span>This is span.</span>
<span>This is also a span.</span>
<span>Span is an inline element.</span>
</body>
</html>
Comments
Post a Comment