sonyaagirman / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Closing HTML elements in order #1

Open zannain opened 6 years ago

zannain commented 6 years ago

With HTML elements, makes sure you close them in the reverse order that you opened them. So if you have a div, h1, and an inline span:

<div>
   <h1><span></span></h1>
</div>
sonyaagirman commented 6 years ago

done