Earn While Learning Web3 Programming>> Start Here FREE!!!
EXERCISE:
i. Watch the above lesson video and also read through the recommended resources. Then, answer following questions
ii. What Is HTML Paragraph "p" Element?
iii. How To Write "Paragraph" Element with "p Tag" in HTML?
iv. Summarize in your own word in this forum below:
(NOTE: please, don't just copy paste from other students - instead answer in your own word base on your level of understanding the lesson and resources)
NOTE:
This Is An Exercise From Our FREE COURSE with CERTIFICATION:
HTML For Web3 dApp Development Course
(If you have not enrolled yet, you can join the course totally for FREE).
What Is HTML p Element Explained:
- HTML p Element is used to create and group contents in to Paragraph in an HTML document.
- it is placed inside HTML body element
- It has both opening and closing HTML tags
- It is a Block Element
- How To Write "Paragraph" Element with "p Tag" in HTML Explained:
<p>
Web3 is taking over, as programmer, do not ignore. learn it asap!
</p>
<p>
Start Learning Free at removed link !
</p>
- Html paragraphs are simply html elements which are used to group contents of an html page(e.g text). They are block-level elements and they start on a new line
<body> <--! starts on a new line --> <p> I love dprogramming University</p> </body>