0
0
HTMLmarkup~5 mins

ID attribute in HTML - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the purpose of the id attribute in HTML?
The id attribute gives a unique identifier to an HTML element. It helps to target that element with CSS, JavaScript, or links.
Click to reveal answer
beginner
Can two elements have the same id value on one HTML page?
No, each id value must be unique on a page. Using the same id twice can cause errors in styling and scripting.
Click to reveal answer
beginner
How do you select an element with a specific id in CSS?
Use the hash symbol (#) followed by the id value. For example, #header { color: blue; } styles the element with id="header".
Click to reveal answer
beginner
How can the id attribute be used in HTML for navigation?
You can link to an element with an id by using a URL with a hash (#) and the id value. For example, <a href="#section1">Go to Section 1</a> jumps to the element with id="section1".
Click to reveal answer
intermediate
Why is it important for id values to be unique and descriptive?
Unique id values prevent conflicts in CSS and JavaScript. Descriptive names make code easier to read and maintain, like naming id="main-header" instead of id="h1".
Click to reveal answer
What symbol is used in CSS to select an element by its id?
A.
B#
C*
D@
Which of the following is true about the id attribute?
AAn <code>id</code> must be unique on the page.
B<code>id</code> is only used for styling.
C<code>id</code> values can contain spaces.
DMultiple elements can share the same <code>id</code>.
How would you link to a section with id="contact" in an HTML page?
A<code>&lt;a src="#contact"&gt;Contact&lt;/a&gt;</code>
B<code>&lt;a href="contact"&gt;Contact&lt;/a&gt;</code>
C<code>&lt;a id="contact"&gt;Contact&lt;/a&gt;</code>
D<code>&lt;a href="#contact"&gt;Contact&lt;/a&gt;</code>
Which is a valid id value?
Amain-header
B123 header
Cmy id
Dheader 1
What happens if two elements share the same id?
AThe browser ignores both elements.
BOnly the first element is styled or targeted.
CIt causes errors or unexpected behavior in CSS and JavaScript.
DIt is allowed and works fine.
Explain what the id attribute is and why it must be unique in an HTML document.
Think about how you find a specific person in a crowd by their unique name.
You got /3 concepts.
    Describe how you can use the id attribute to create a link that jumps to a specific part of a webpage.
    Imagine a table of contents that takes you directly to a chapter.
    You got /3 concepts.