31 Matching Annotations
  1. Nov 2022
    1. <div class="image_placeholder"> </div>

      I can't tell what the function of this div is

    2. <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.

    3. <div class="wrapper">

      everything within this div should be indented once more

    4. <div class="hero_content">

      This div and its contents should be indented once more

    5. <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. 0px;

      don't need unit for values of 0

    2. .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.

    3. padding-left:10%; padding-right:10%;

      This works but a shorter way is to do width: 80%

  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 class="card">

      These look really nice but could use an article element instead of a div

    3. <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. url(images/taylor-heery-KT4sScqQx44-unsplash.jpg)

      url('images/taylor-heery-KT4sScqQx44-unsplash.jpg')

    2. url(images/elephants.jpeg);

      url('images/elephants.jpeg'); single quotes around image src

    3. background-image: url(images/pexels-janiere-fernandez-13484865.jpg);

      the image src should be in single quotation marks url('images/sfrffdfsdf.png')

    4. .card-two h2 {

      nice

    1. Content taken from <a href="https://www.hairpins.ca/">https://www.hairpins.ca/</a>. Used for educational purposes only.

    2. Email

      mailto: instead of email:

    3. "tel:250-b338-7467

      "tel:2503387467" no dashes necessary

    4. Questions, comments, ready for a new do? We look forward to hearing from you!<br> If you're looking to make an appointment online, please do so here.

    1. Content taken from <a href="https://www.hairpins.ca/">https://www.hairpins.ca/</a>. Used for educational purposes

    2. 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.

    3. Content taken from <a href="https://www.hairpins.ca/">https://www.hairpins.ca/</a> Used for educational purposes only.

      Missing

    4. <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 arshdeep singh speaking.</p>

      Good practice to put new element on separate line after h1

    2. <img src="image/india-amritsar-punjab-golden-temple.jpg" alt="golden temple is beatifull">

      So beautiful

    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

    2. Document

      I think we're supposed to change this to 'Assignment A'