31 Matching Annotations
  1. Nov 2022
    1. <div class="wrapper"> <div class="info"> <h4>Latest News</h4> <h4>October 1:</h4> <p>Maecenas ornare.</p> <h4>September 15th:</h4> <p>Etiam eget ligula vitae sapien.</p> <h4>September 10th:</h4> <p>Nam id mi dapibus, condimentum.</p> </div> <div class="info about"> <h4>About Us</h4> <p>Quisque eget turpis a odio tristique feugiat. Vivamus placerat fermentum velit ac posuere. Cras sollicitudin ex nec neque malesuada, id facilisis nibh cursus. Phasellus euismod justo sed neque pretium finibus. Mauris dapibus, leo quis venenatis fringilla, erat quam mollis tortor, quis sodales quam nibh quis turpis.</p> <button class="button">Get in touch</button> </div> <div class="info"> <h4>Follow us</h4> <p>Facebook</p> <p>Instagram</p> <p>Youtube</p> </div> </div>

      This needs to be included in the footer instead of the section.

    1. <section> <div class="container copyright"> <small>Copyright © 2022. All rights reserved North Island College DIGITAL Design + Development</small> </div> </section>

      section must contain heading element...

  2. Oct 2022
    1. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="logo"><a href="index.html"><img src="images/iconlogo.jpg" alt="Icon Logo" width="58"></a> </div> <nav> <ul> <li><a href="home.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="about.html">About Us</a></li> <li><a href="testimonials.html">Testimonials</a></li> </ul> </nav> <main> <div class="homepage"> <img src="images/iconlogo.jpg" alt="Team's photo" width="550"> <h1>Owner's Name</h1> <p>Information about the company such as history, biography etc...</p> </div> <article> <h2>Our team</h2> <div class="team"> <img src="images/iconlogo.jpg" alt="Team member 1" width="350"> <h3>Team member 1</h3> </div> <div class="member2"> <h4>Team member 2</h4> <img src="images/iconlogo.jpg" alt="Team member 2" width="350"> </div> </article> <hr> <div class="container"> <a class="button" href="contact.html"><b>Book an appointment</b></a> <hr> </div> </main> <footer> <p> @ Copyright 2022</p> </footer> </body> </html>

      Line spacing is too much in most areas.

    2. <div class="logo"><a href="index.html"><img src="images/iconlogo.jpg" alt="Icon Logo" width="58"></a> </div> <nav> <ul> <li><a href="home.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="about.html">About Us</a></li> <li><a href="testimonials.html">Testimonials</a></li> </ul> </nav> <main> <div class="homepage"> <img src="images/iconlogo.jpg" alt="Team's photo" width="550"> <h1>Owner's Name</h1> <p>Information about the company such as history, biography etc...</p> </div> <article> <h2>Our team</h2> <div class="team"> <img src="images/iconlogo.jpg" alt="Team member 1" width="350"> <h3>Team member 1</h3> </div> <div class="member2"> <h4>Team member 2</h4> <img src="images/iconlogo.jpg" alt="Team member 2" width="350"> </div> </article> <hr> <div class="container"> <a class="button" href="contact.html"><b>Book an appointment</b></a> <hr> </div>

      Excess use of div element in places where it could be replaced by other semantic elements.

    1. .card-four h4{ font-size:2.5rem; line-height: 120%; color:#2c2c2c; padding: 30px; margin-top: 0%; font-family: 'Inter', sans-serif; }

      line spacing is not correct

  3. Sep 2022