ckim131 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Wrap long lines in HTML #3

Open griffinlacek opened 7 years ago

griffinlacek commented 7 years ago

Just a minor code styling suggestion. It's good practice to wrap long lines of code to ~80 characters so that we can see all the code in the window without scrolling. Something to keep in mind!

To wrap, just have a newline in the code itself. It won't wrap like that in the actual page since newlines in HTML are only possible through <br /> so for most HTML you can comfortably add newlines and wrap text without changing the page look.

https://github.com/ckim131/prj-rev-bwfs-dasmoto/blob/master/Dasmoto's%20Arts%20%26%20Crafts/index.html#L17 https://github.com/ckim131/prj-rev-bwfs-dasmoto/blob/master/Dasmoto's%20Arts%20%26%20Crafts/index.html#L24 https://github.com/ckim131/prj-rev-bwfs-dasmoto/blob/master/Dasmoto's%20Arts%20%26%20Crafts/index.html#L31

ckim131 commented 7 years ago

Thank you. Will keep this in mind and make the changes.