sonyaagirman / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Work on indenting #4

Open zannain opened 6 years ago

zannain commented 6 years ago

Be aware of your indentation! This will save you a lot of time and frustration when you are trying to debug an application. Keeping track of your indentation will help you ensure that you are closing all your div tags and if using CSS3 properties like Flexbox and Grids, help you figure out why things in the web page may not be aligning as you expect them to. A lot of text editors will do this for you, but you may need to install a linter for your specific text editor by looking for one in its package manager. This also allows you to take advantage of a text editors code folding abilities. If you notice the carot's on the left side of the screenshots below, these are areas where you can fold your code. This is useful when you have large web pages and helps you focus on certain portions of your webpage. Proper indentation helps ensure the code folding is accurate. Lastly, it improves code readability which is a mark of a season web developer when they're code is easy to read and understand. Right now your code screenshotted below is not organized at all and it makes it very difficult to read.

image

sonyaagirman commented 6 years ago

done the changes, please review again.