🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Day 3: Links & Anchors

HTML Masterclass
Current Task

Objective

Links connect the web!

Step 1: Create an anchor tag <a> linking to "https://google.com" with the text "Search".

Step 2: Add the target="_blank" attribute so it opens in a new tab.

Step 3: Create a second link pointing to "#footer" with the text "Go to Footer".

index.html
<body> <a href="https://google.com" target="_blank">Search</a> <a href="#footer">Go to Footer</a> </body>

* Hint: Correct characters turn green, incorrect ones turn red.

Live Preview
🖼️

Verify your code to see the preview