- 3
Was This Helpful. Please check out the code and give an up vote.
4 Answers
+ 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 "<" and ">" to prevent issues and keep your content in a paragraph.
<p> will be <p>
</p> will be </p>
+ 5
Escaping the opening angular bracket is enough to avoid it to be parsed as html element:
<p> can be <p>
</p> can be </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"<p></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>
;)
+ 1
Thanks
+ 1
Thanks