Text Formatting in HTML
You may want to do some basic formatting in your document without the use of CSS.
Bold and Italic Text
<body>
<p>This is <strong>bold</strong> text.</p>
<p>This is <em>italic</em> text.</p>
</body>
<strong>: Represents strong importance or ...
ritechoice23.hashnode.dev2 min read