Featured Post

Data Science Concepts

HTML Formatting Tags In Hindi By #BKTutorial | Part-1

 



Source Code:

<html>
<head>
<title>HTML Formatting Tags</title>
</head>
<body>
		<p>How <b> are</b> you ?</p>
		<p>How <strong> are </strong> you ?</p>
		<p>How <i> are </i> you ?</p>
		<p>How <em> are </em> you ?</p>
		<p>How <mark> are</mark> you ?</p>
		
		
</body>
</html>

Output:








Comments