Reputation: 589
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
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