Shark3210 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Format issue #2

Open mml1 opened 6 years ago

mml1 commented 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 &amp; Crafts</title>
  <link href=".\resources\css\style.css" type="text/css" rel="stylesheet">
</head>

</body></html> Do this:

<html>
<head>
  <title>Dasmoto's Arts &amp; 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