HannahAurand / old-portfolio

Online Portfolio
0 stars 0 forks source link

tip: Indentation #4

Open 0xZakk opened 6 years ago

0xZakk commented 6 years ago

You want to be sure to follow consistent indentation in your code, it'll make it a lot easier to read!

I would write this:

https://github.com/HannahAurand/hannahaurand.github.io/blob/588dcd3c9ab3d6fc2ac224b8646061d63ffe30ce/index.html#L29-L39

like this:

<div class="one"> 
    <h3>Who am I?</h3> 
    <p>I am constantly learning and applying new knowledge to all  
     areas of my life. Implementing innovative strategies for  
     problems is my passion--even if it means I fail along the way. 
     Failure is a path to success.</p> 
</div> 
<div class="two"> 
    <img src="pieChart.png" alt="identityPieChart"> 
</div> 
HannahAurand commented 6 years ago

Got it, will do.