Challenge: Create Links to Popular Websites
Goal
Create a captivating web page featuring an unordered list (<ul>) with links (<a>) to three popular websites. The magic lies in ensuring these links open in new tabs when clicked, enhancing the user experience and allowing them to explore each destination effortlessly.
Task
Use the following elements to create an exciting web discovery experience:
- Create an unordered list with three items using a
<ul>element. - Each list item should contain a link (
<a>) to a popular website and its name. - The list should contain the following items:
- "Apple" - Link to Apple's website:
https://www.apple.com/; - "Amazon" - Link to Amazon's website:
https://www.amazon.com/; - "Netflix" - Link to Netflix's website:
https://www.netflix.com/.
- "Apple" - Link to Apple's website:
index.html
- Use the
ultag to create an unordered list. - Use the
litag to create list items for each website link. - Use the
atag to create links, and specify the website URL using thehrefattribute. - To make the links open in new tabs, include the
target="_blank"attribute within theatag.
index.html
Thanks for your feedback!
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you show me an example of how the HTML code should look?
What does the final web page look like with these links?
Can you explain why we use target="_blank" for links?
Awesome!
Completion rate improved to 2.56
Challenge: Create Links to Popular Websites
Swipe to show menu
Goal
Create a captivating web page featuring an unordered list (<ul>) with links (<a>) to three popular websites. The magic lies in ensuring these links open in new tabs when clicked, enhancing the user experience and allowing them to explore each destination effortlessly.
Task
Use the following elements to create an exciting web discovery experience:
- Create an unordered list with three items using a
<ul>element. - Each list item should contain a link (
<a>) to a popular website and its name. - The list should contain the following items:
- "Apple" - Link to Apple's website:
https://www.apple.com/; - "Amazon" - Link to Amazon's website:
https://www.amazon.com/; - "Netflix" - Link to Netflix's website:
https://www.netflix.com/.
- "Apple" - Link to Apple's website:
index.html
- Use the
ultag to create an unordered list. - Use the
litag to create list items for each website link. - Use the
atag to create links, and specify the website URL using thehrefattribute. - To make the links open in new tabs, include the
target="_blank"attribute within theatag.
index.html
Thanks for your feedback!