nomorequestions
nomorequestions

Reputation: 589

paragraph showing as links in html

I am learning HTML/CSS. While practicing I came to this unusual case. I made a header and paragraph in section.

<section id="page_section">
    <header>
        <h3>About Me</h3>
    </header>
    <article>
        <p>It's Me</p>
    </article>
</section>

And in the browser, both the header and the paragraph are displayed as clickable links in blue and underlined. Why does that happen?

Upvotes: 0

Views: 114

Answers (1)

nomorequestions
nomorequestions

Reputation: 589

This part of the code is fine.

The problem is due to the missing of closing anchor tag in earlier part of your code.

Upvotes: 2

Related Questions