QUESTION IMAGE
Question
- what is the difference between <u1> and <o1>?
a. <u1> is ordered, <o1> unordered
b. <u1> bulleted, <o1> numbered
c. they are the same
d. <u1> for paragraphs, <o1> for headings
- what is a paragraph in html?
a. a block of text enclosed by paragraph tags
b. a section for images
c. a heading
d. part of the <head> section
- which correctly opens a paragraph?
a. <para>
b. <openp>
c. <p>
d. <pg>
- which correctly closes a paragraph?
a. <p>
b. <paragraph>
c. <closep>
d. </p>
- what is the purpose of the <p> tag?
a. defines a block of text
b. creates a heading
c. inserts an image
d. creates a list
- which is the correct use of paragraph tags?
a. <p>this is my first paragraph</p>
b. <para>this is my first paragraph</para>
c. <pg>this is my first paragraph</pg>
d. <text>this is my first paragraph</text>
- why is it important to close html tags properly?
a. browsers will delete your code
- In HTML,
<ul>(unordered list) is bulleted and<ol>(ordered list) is numbered. - A paragraph in HTML is a block of text enclosed by paragraph tags.
- The correct opening tag for a paragraph in HTML is
<p>. - The correct closing tag for a paragraph in HTML is
</p>. - The
<p>tag defines a block of text. - The correct use of paragraph tags is
<p>This is my first paragraph</p>.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
- B.
<ul>bulleted,<ol>numbered - A. A block of text enclosed by paragraph tags
- C.
<p> - D.
</p> - A. Defines a block of text
- A.
<p>This is my first paragraph</p>