Bird
0
0

Which of the following is the correct way to create an internal link in HTML?

easy📝 Factual Q12 of 15
SEO Fundamentals - Link Building
Which of the following is the correct way to create an internal link in HTML?
A<code><a href='/about-us'>About Us</a></code>
B<code><a href='https://external.com'>Link</a></code>
C<code><link rel='stylesheet' href='/style.css'></code>
D<code><img src='/images/logo.png'></code>
Step-by-Step Solution
Solution:
  1. Step 1: Identify internal link syntax

    Internal links use the <a> tag with a relative URL starting with '/' for same-site pages.
  2. Step 2: Check each option

    <a href='/about-us'>About Us</a> uses <a href='/about-us'>, which is a correct internal link. <a href='https://external.com'>Link</a> links externally, C is for stylesheets, D is an image tag.
  3. Final Answer:

    <a href='/about-us'>About Us</a> -> Option A
  4. Quick Check:

    Internal link = <a href='/page'> [OK]
Quick Trick: Internal links use with relative URLs starting with '/' [OK]

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More SEO Fundamentals Quizzes