Inline and the block elements in 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>
<!-- Paragraph is the block elements
and the span is the Inline elements
ul is the block element
li is the block element
div is the block element
em is the Inline element
img is the Inline element-->
<p>This is a paragraph</p>
<p>Manja is the ganja</p>
<span>I want to learn the web</span> <span>EEEEEE</span>
<ul>
<p>"This is the paragraph not</p>
<p>manja</p>
</ul>
<li>kya chal raha hai</li>
<li>Kya nhi zindagi me kuch naya ho raha hai</li>
<em>Not only the </em><em>I am learning the egd </em>
<div>egd is the based</div>
<div>:On the graphics</div>
<img src="ma" alt="not found"><img src="aj" alt="please try a later">
</body>
</html>