31 Matching Annotations
  1. Nov 2022
    1. <div class="copyright"> <p> copyright &copy; 2022. All rights reserved North Island College DIGITAL Design + Development </p> </div>

      This shouldn't be inside footer, that's why it doesn't have it's own space underneath. It can go right under footer.

    2. <div class="logo"> <img src="images/dgl-logo.png" alt="the dgl logo" style="width:60px"> </div>

      I think this can go outside of nav because it's not technically part of navigation. That way you don't need a div for the logo, it can just be in header

    1. .logo{

      I think some of your classes may not be needed. The same element could be selected by writing 'header img {}'. Since it is the only image within header it'll be the only element selected.

  2. Oct 2022
    1. <main>

      Your <main> element encompasses all of the body content, so it seems a bit redundant. I would suggest using main around the 'My analysis, one piece at a time:' section. The content before this is introductory, but the detailed analysis seems to be the actual main content.

    2. <div> <h2>Business:</h2> <p>Phi Architecture provides customized architectural solutions to its clients and is a company based in Comox. They build solutions that fit clients' needs, aspirations, personalities, budgets, and sites. </p> </div>

      Claire mentioned today in class that too many divs can cause code to be harder to read. The purpose here seems to be to organize the code, but using comments to separate sections might do this more cleanly.

    1. Range from 45 minutes to 90 minutes <br> Please call us at 250-338-7467 (PINS) to book a shorter appointment for Kid's Cuts, Dry Cuts, Fringe Trims, Neck trims, or Clipper Cut maintenance.

    2. <br>Meet the Team<br>

      Breaks make sense but this text is not surrounded by an element tag. Something like: <br>

      Meet the Team

      <br>

      makes it possible to format that line.

  3. Sep 2022
    1. <p>This is Rohan Sharma speaking <p></p>
      • It's good practice to put new elements on a new line
      • You have two opening paragraph tags (

        ) before a closing tag (

        ), paragraph content should be between