1 0 Comments Fill in the missing symbols to create a valid opening paragraph tag: p | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

1 0 Comments Fill in the missing symbols to create a valid opening paragraph tag: p

1 0 Comments Fill in the missing symbols to create a valid opening paragraph tag: p

25th Dec 2022, 11:48 AM
Nabeel Olv
Nabeel Olv - avatar
1 Answer
0
Answer: <p> Explanation: in html5 - tags, also known as elements, have to be enclosed within these symbols: < > These elements require opening tag and a closing tag, e.g. <h1>My big Heading! </h1> Some of these elements do not require a closing tag, since they do not have any content that can go between opening and closing tags, e.g. <hr> and <br> — <hr> will just insert a horizontal line, and doesn't require a closing tag. <br> will just insert a line break, whether it is inside a paragraph, or not, and doesn't require a closing tag.
25th Dec 2022, 1:12 PM
Lamron
Lamron - avatar