Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Special Purpose Text Markup | Tags and Attributes
Ultimate HTML

Challenge: Special Purpose Text MarkupChallenge: Special Purpose Text Markup

🏁 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.

content

📋 Task

Use the following elements to create an exciting web discovery experience:

  1. Create an unordered list with three items using a <ul> element.
  2. Each list item should contain a link (<a>) to a popular website and its name.
  3. 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/.
html

index.html

css

index.css

js

index.js

  1. Use the ul tag to create an unordered list.
  2. Use the li tag to create list items for each website link.
  3. Use the a tag to create links, and specify the website URL using the href attribute.
  4. To make the links open in new tabs, include the target="_blank" attribute within the a tag.
html

index.html

css

index.css

js

index.js

Everything was clear?

Section 2. Chapter 10

Challenge: Special Purpose Text MarkupChallenge: Special Purpose Text Markup

🏁 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.

content

📋 Task

Use the following elements to create an exciting web discovery experience:

  1. Create an unordered list with three items using a <ul> element.
  2. Each list item should contain a link (<a>) to a popular website and its name.
  3. 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/.
html

index.html

css

index.css

js

index.js

  1. Use the ul tag to create an unordered list.
  2. Use the li tag to create list items for each website link.
  3. Use the a tag to create links, and specify the website URL using the href attribute.
  4. To make the links open in new tabs, include the target="_blank" attribute within the a tag.
html

index.html

css

index.css

js

index.js

Everything was clear?

Section 2. Chapter 10
some-alt