Open mml1 opened 6 years ago
Overall, your indentation is great, however, in the beginning and the end of your code be sure to do review it.
Instead of this:
<html><head> <title>Dasmoto's Arts & Crafts</title> <link href=".\resources\css\style.css" type="text/css" rel="stylesheet"> </head>
</body></html> Do this:
</body></html>
<html> <head> <title>Dasmoto's Arts & Crafts</title> <link href=".\resources\css\style.css" type="text/css" rel="stylesheet"> </head>
</body> </html>
The changes above will make your code easier to read and follow industry format.
https://github.com/Shark3210/prj-rev-bwfs-dasmoto/blob/master/DasmotoProject/index.html#L7-L8 https://github.com/Shark3210/prj-rev-bwfs-dasmoto/blob/master/DasmotoProject/index.html#L51
Overall, your indentation is great, however, in the beginning and the end of your code be sure to do review it.
Instead of this:
</body></html>
Do this:The changes above will make your code easier to read and follow industry format.
https://github.com/Shark3210/prj-rev-bwfs-dasmoto/blob/master/DasmotoProject/index.html#L7-L8 https://github.com/Shark3210/prj-rev-bwfs-dasmoto/blob/master/DasmotoProject/index.html#L51