HomeToolsAbout a20k

Elements

Alternative Elements

// Alternative HTML tags to <div> <section/> <article/> <main/> <aside/> // empty element <></>

<a> tag

Template for new tab link

<a target="_blank" rel="noopener noreferrer" href="">Source</a>

Breakdown

// open in new tab target="_blank" // security measure rel="noopener noreferrer"
  • You should always add rel="noopener noreferrer" to the a tag to prevent the new page from accessing the window.opener object.
© VincentVanKoh