55 Matching Annotations
  1. Oct 2022
    1. <span class="dot"></span> <!--how can i center these dots and turn the one red? (in css of course)-->

      Delete your button , replace it with an anchor within a div like

      div a class = 'watch' href = https://www.youtube.com/watch?v=6u1Ps6ZlDxA> Watch Video /a-/div----------------------------------------------then place the span next then put a closing div to close out the div with class group!

      then we gotta work some css magic which i will show you on css side!

    2. </article> <article class="card-four"> <img src="images/covid-christmas.jpg" width="320" height="250" alt="Street at Christmas"> <!--how to make the picture scale to fit?--> <a class="btn btn-Live"> Live </a> <a class="btn btn-Breaking"> Breaking</a> <a class="btn btn-UK"> UK</a> <p>'Plan C' rumors grow; Downing Street Christmas party cancelled; warning Scotland's R number could rise above 2| Covid latest</p> </article> </body> </html>

      Formatting

    3. <div class="group"> <br> <p>What is SilkTricky?</p> <h3>A NEW KIND OF BEAST</h3> <button onclick="window.location.href='https://www.youtube.com/watch?v=6u1Ps6ZlDxA';"> <!--linked this to a slick rick video for humour's sake. I used the same video for the links in card 4 as well just for conveniece--> Watch Video </button> </div>

      formatting

    4. <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;0,600;1,200;1,400;1,600&display=swap" rel="stylesheet"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet"> </head>

      Needs to be formatted

    1. .dot { height: 10px; width: 10px; background-color: aqua; border-radius: 50%; display:inline-block; text-align: center; /*can anyone help me understand why these dots wont center? */ margin-bottom: 10px;

      Change .dot margin-bottom:10px; to margin-top:20px;---------then copy and paste it and make one an id named dot

    2. /*Does anyone know how to get a black border around the letters here?*/

      just as you did for the btn live, but are you trying to make a border or the text black? to make the text black its just color:black;

    1. <li>FULL FOIL: $188/$219 with cut</li> <li>/4 FOIL: $172/$203 with cut</li> <li>1/2 FOIL: $158/$189 with cut</li> <li>1/4 FOIL: $144/$175 with cut</li>

      Indent each li item to show they are child of the ul element, also making it much easier to read.

    2. <p>Content taken from https://www.hairpins.ca/ <a href="url">https://www.hairpins.ca/</a>

      Nothing between anchor tags (a) so therefore nothing to click so your link is currently unreachable.

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

      You have nothing between the anchor tags therefore you have no clickable link on your actual site

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

      Also its easier to read if you start the p on new line showing that it is truly a child elements of the footer.

    3. <p>Hairpins Boutique Salon #4 - 224 6th Street Courtenay, BC V9N 1M1 </p> <!--this link needs to be more simple, I need to figure out how to name it--> Check us out on Google Maps <a href="url">https://www.google.com/maps/place/Hairpins+Boutique+Salon/@49.6904218,-124.9971279,15z/data=!4m5!3m4!1s0x0:0x859b2cfce3bc31ea!8m2!3d49.6904117!4d-124.9971261</a> <h1> contact </h1> <!--added email and telephone links here--> <p><a href="tel:2503387467">Tel: 250-338-7467</a></p> <a href="mailto: salon.hairpins@gmail.com">Email: salon.hairpins@gmail.com</a> </p> <!--added contact us link--> <p> Contact us today to book an appointment! <a href="contact.html">Contact Us</a> </p>

      this would have been better off as an entire being instead of being split up multiple times

    1. <img class="the-hairpins-team.jpeg" src="Images/the-hairpins-team.jpeg" alt" a group photo of the hair pins salons 11 staff members ">

      This is missing the proper close at the end. The backslash.

    2. <p> Contact us today to book an appointment! <nav> <a href="contact.html">Contact Us</a></nav>|

      The p element is not closed, and thereis no need for the nav, nav is used for a large chunk of navigational links. Youre only using one in this part so no point.

    1. #h1 { background-color: dimgrey; }

      Possibly because your using an id but without using a name for said id. No way to invoke it.

      h1 on its own is an identifier for all h1 elements

    1. <h2>Hairpins Boutique Salon</h2> <h2>#4 - 224 6th Street Courtenay, BC V9N 1M1</h2> </section> <h2> Check us out on Google Maps:</h2> <a href="https://www.google.com/maps/place/Hairpins+Boutique+Salon/@49.6904218,-124.9971279,15z/data=!4m2!3m1!1s0x0:0x859b2cfce3bc31ea?sa=X&ved=2ahUKEwiYi_2Ex6T6AhXNMjQIHYkoCUUQ_BJ6BAhSEAc"> Hairpin Salon</a> <br> <h2> <a href="250-338-7467"> Tel: 250-338-7467 </a></h2>

      It would have made more sense to have this together then to have half of it inside of an unrelated section

    1. <ul> <li>$47.00 = 45 Minute Clipper Cuts and Short Fine Hair</li> <li>$61.00 = 60 Minute Cut for Fine to Medium Hair</li> <li>$76.00 = 75 Minute Cut for Medium to Thick Hair</li> <li>$90.00 = 90 Minute Cut for<em>THICK THICK</em> Hair, you know who are :)</li

      It would be best to not have spaces between the li elements

    1. <img src="images/the-hairpins-salon.jpeg" alt="a photo of hairpin salon">

      It could possibly be that you are not being specific enough with the photo path. Try right clicking on the image in vsc and clicking copy relative path.

  2. Sep 2022
    1. <p> assignment A</p>

      you dont need to put the title within p tags. you can just simply write whatever the title of your page is inbetween title tags.. EX title assigment A /title no need for p tags

    1. </li></ul>

      Besides this everything else looks great syntax wise.

      I would put the ul on its own line and in line with the opening ul. Improves organization and readability .

    1. <h1>Hello World</h1> <p>This is *Roberta Joehle* speaking.</p>

      Everything looks great, Im not sure if this is a hard rule but it does look much more neat if you start the paragraph on the line below your header I also probably would have included the Comment F22 DGL 103 DLU1 – Roberta Joehle - Assignment A on a new line aswell<br /> overall great job!