0
Hi who can hel me please
I can't understand HTML
4 Answers
+ 3
read the tutorials again. those are really well written and short, understandable
0
Can I ask what is <p>
0
Abdulloh , kindly ask a real question next time.
In HTML, the <p> tag is used to define a paragraph in a web page. When a browser reads this, it displays the content (whatever it may be) inside the <p> tags as a paragraph. Often, browsers automatically add a single blank line before and after each <p> element.
It is a container tag and hence, it has both opening and closing tags (<p>...</p>). Also, that means you can nest other tags inside it like <div>, <audio> or <img>
It is a semantic tag and it is block-level.
For more information on the <p> tag, feel free to visit:
https://www.w3schools.com/tags/tag_p.asp
https://www.geeksforgeeks.org/html/html-paragraph/
0
Practice daily you can understand