NEW
Font size
WorksheetsHTML QUIZ 5
Total questions: 15
Worksheet time: 15mins
Which HTML code correctly links to a section within the same page with the anchor name a1?
<a href="a1">Go</a>
<a href="#a1">Go</a>
<a name="#a1">Go</a>
<a target="a1">Go</a>
Which code correctly defines the destination of an internal hyperlink?
<a id="a1">Section</a>
<a name="a1">Section</a>
<a href="a1">Section</a>
<a target="a1">Section</a>
What will happen if the # symbol is omitted in this code?
<a href="a1">Go</a>
Page refreshes
Link opens a new page
Link will not work as an internal link
Browser crashes
Which attribute determines where the linked document opens?
href
link
target
open
Which value of the target attribute opens the link in a new tab or window?
_self
_parent
_top
_blank
Analyze the code:
<a href="Peta1_ELLE.html" target="_self">Peta 1</a>
What will happen?
Opens Peta1 in a new window
Opens Peta1 in the same window
Opens Peta1 in a new browser
Code is invalid
Which HTML code correctly links to an external website?
<a link="www.google.com">Google</a>
<a href="google.com">Google</a>
<a href="https://www.google.com/">Google</a>
<a target="google">Google</a>
Which code correctly uses an image as a clickable hyperlink?
<img href="page.html" src="pic.jpg">
<a src="pic.jpg" href="page.html"></a>
<a href="page.html"><img src="pic.jpg"></a>
<img link="page.html" src="pic.jpg">
Which part of the code below changes the text color of the hyperlink?
<a href="Peta1_ELLE.html" style="color:white;">Peta 1</a>
href
style
Peta 1
<a>
Which code correctly combines opening a link in a new tab AND changing its text color?
<a href="page.html" color="red" target="_blank">Link</a>
<a href="page.html" style="color:red;" target="_blank">Link</a>
<a target="_blank" color="red">Link</a>
<a style="red" target="blank">Link</a>
Which HTML element is responsible for creating ALL types of hyperlinks?
<link>
<href>
<a>
<url>
Which scenario best demonstrates an internal hyperlink?
Linking to Google
Linking to Facebook
Linking to another section of the same page
Linking to another website
What is the function of this code?
<a href="#top">Back to top</a>
Refreshes the page
Scrolls to the bottom
Scrolls to the top of the page
Opens a new page
Which of the following is the MOST COMMON mistake when creating hyperlinks?
Using uppercase letters
Missing quotation marks in href
Using <p> instead of <a>
Adding spaces in text
Why is hyperlink mastery important in website development?
Improves image quality
Allows page navigation and connectivity
Changes page layout
Reduces file size
