- 3

Was This Helpful. Please check out the code and give an up vote.

https://code.sololearn.com/WcnHOes0slHv/?ref=app

7th Jul 2017, 10:31 PM
Nwankwo Ugochukwu Samuel
Nwankwo Ugochukwu Samuel - avatar
4 odpowiedzi
+ 10
There is an issue in the code. To show us how to use the tags... you close the "original" tag, something like: <p> Now i will explain how to use "</p>", this close tag ... </p> Replace the opening and close tag with "&lt;" and "&gt;" to prevent issues and keep your content in a paragraph. <p> will be &lt;p&gt; </p> will be &lt;/p&gt;
7th Jul 2017, 11:25 PM
Maz
Maz - avatar
+ 5
Escaping the opening angular bracket is enough to avoid it to be parsed as html element: <p> can be &lt;p> </p> can be &lt;/p> So, fixed first paragraph of your code could be: <p>To start,HTMl stands for Hypertext mark up language.It is used to crate websites through text editors.It must starts with an. opening and must be closed.For example"&lt;p>&lt;/p>" that was the opening and closing of a paragraph. And they are called tags.Html has two main parts just like the human body; The head and the body.The head being the non-visual part and the body the visual part. So lets start with basics of html.Enjoy your free lesson.</p> ;)
8th Jul 2017, 4:47 AM
visph
visph - avatar
+ 1
Thanks
8th Jul 2017, 12:44 AM
Nwankwo Ugochukwu Samuel
Nwankwo Ugochukwu Samuel - avatar
+ 1
Thanks
8th Jul 2017, 11:05 AM
Nwankwo Ugochukwu Samuel
Nwankwo Ugochukwu Samuel - avatar