DOM elements , Idea is to DRY.

PHOTO EMBED

Wed Nov 11 2020 18:48:14 GMT+0000 (Coordinated Universal Time)

Saved by @jpannu

//Function for Adding Attribute(s) to HTML Elements.
function setAttributes( element , attributes ) { 
  for (const key in attributes) {
    element.setAttribute(key , attributes[key]);
     }
  }
  
  
 //Using SetAttributes Function to add Attributes.
 
setAttributes( imgElement , { 
  href : 'https://www.unsplash.com/pictures..',
  target : '_blank'
   }
  
  
content_copyCOPY