Help me in solving HTML12 problem

My issue

Did you start a new paragraph using

and underline the word ‘Greece’ using tag?

My code

// your code goes here

Learning course: Learn HTML / CSS
Problem Link: Recap in HTML / CSS

Hi young_woven_69,

For starting a new paragraph in HTML, use can take help of “p” tag
example: <p> This is a paragraph </p>
For underling any text, use can take help of “u” tag
example: <p> Only the word <u> HTML </u> will be underlined</p>

you can also combine these tags with other tags.

To start a new paragraph and underline the word “Greece” in HTML, you can use the <p> tag for the paragraph and the <u> tag to underline text.

Example:

html

Copy code

<p>This is a new paragraph. The word <u>Greece</u> is underlined.</p>

Explanation:

  1. Paragraph Tag (<p>):
  • Used to create a new paragraph.
  1. Underline Tag (<u>):
  • Surround the word or phrase you want to underline.

Let me know if you need more examples or help with HTML! :blush: