html code inside a html paragraph<p> | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

html code inside a html paragraph<p>

how can i write write a html code to view in browsers inside the <p> tag?

25th Dec 2016, 6:27 AM
Mohammad Abu Sayed
Mohammad Abu Sayed - avatar
1 Réponse
+ 1
You must encode certain characters such as <> for obvious reasons. To do this, use both &lt; (lesser than) and &gt; (greater than) respectively for proper encoding, and optionally surround your text with <pre> and <code> tags. Example: <p>This is a body tag:<br><br> <body></p> Output: This is a body tag: <body> Reference tables are available if you look them up. Bonus: ampersand (&) itself is &amp; Don't forget the semicolon! ATTENTION: this must be viewed from the mobile app, as the web version automatically parses any encoding.
25th Dec 2016, 8:28 AM
Hyper Late Night Code
Hyper Late Night Code - avatar