HTML formatting tags are very important tags because when we write our content they need formatting. HTML formating means we show our content in a good way and we make this bold or italic or normal content. Sometimes we have to need our paragraph in a bold character. Then we are using this paragraph as a bold but how. That is HTML formatting.
HTML formatting tags and HTML Comments
HTML is making the structure of the website or webpage. We are using many paragraphs, headings, images, quotations, etc many more things. When we use this type of attribute we need to structure the different way for good looking and people concentration. So we need to formatting .
Coding HTML formatting tags and HTML Comments
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title> Learning </title>
</head>
<body>
<p><b>This is our Paragraph</b></p> <!-- Bold -->
<p><i>This is our Paragraph</i></p> <!-- Italic -->
<p>This is our Paragraph</p> <!-- Normal -->
</body>
</html>
Output:
Here we use Comment Also. First, we use Single Line comments like Bold, italic, and Normal. But Comment is not showing in our Output. This is our 2nd test, its not shown in our Output.