I have an html string that looks like this :
'<p>Hello</p><p>I would like to schedule a meeting with you.</p>
 <a class="button button--blue" href="#">
   <button class="button 
      button--blue">Schedule meeting
   </button>
 </a>
 <p>See you soon.</p> 
 <p>baher</p>',
How can i access these elements individually to add a class to them without using jQuery?
please note that i'm working on the server side so stuff like document and window are not accessible 
 
     
    