Inline and Block Elements(HTML)
<!DOCTYPE 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>Inline and Block Elements</title>
</head>
<body>
<strong style="border: 2px solid blue;">this is a paragraph</strong>
<a style="border: 2px solid blue;">this is also a paragraph</a>
<span style="border: 2px solid blue;">this is span</span> <span style="border: 2px solid blue;">this is also
span</span>
<li style="border: 2px solid red;">this is para</li>
<em style="border: 2px solid red;">this is em</em>
<div style="border: 2px solid red;">this is div</div>
</body>
</html>
Comments
Post a Comment