🎴 Flashcard Mode

Web Development Basics: HTML, JavaScript & XML

Card1 / 20
Mastered0
Review0
QuestionClick to flip

How can you open a link in a new browser window?

AnswerClick to flip back
A
<a href="url" target="_blank">
💡 Explanation:

To open a link in a new browser window, use the target attribute with value "_blank": . The values "new" or a new attribute are not standard HTML. The target="_blank" is the correct way to achieve this behavior.

Change Mode