+ 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
1 Réponse
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.