Advertisement
makispaiktis

Codecademy - 5th Exercise - Healthy Recipes (CSS)

Sep 3rd, 2019 (edited)
591
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.   <title>Quinoa and Kale Salad Recipe</title>
  6.   <link href="style.css" type="text/css" rel="stylesheet">
  7. </head>
  8.  
  9. <body>
  10.  
  11.   <img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/salad.jpg" alt="Kale Caeasar Salad"/>
  12.   <h1>Kale Caesar Quinoa Salad with Roasted Chicken</h1>
  13.   <p class="description">Kale and quinoa provide a healthy base for roasted chicken topped with a light Caesar sauce.</p>
  14.  
  15.   <p id="cook-time">Total time: 45 minutes</p>
  16.  
  17.   <h2>Ingredients</h2>
  18.   <ul class="ingredients">
  19.     <li>1/4 cup kale</li>
  20.     <li>1 cup Quinoa</li>
  21.     <li>2 tbsp Olive Oil</li>
  22.     <li>1 chicken breast</li>
  23.     <li>Caesar Dressing</li>
  24.   </ul>
  25.  
  26.   <h2>Preparation</h2>
  27.   <ol>
  28.     <li>
  29.       <p>Prepare quinoa and roast chicken until golden brown and 165 in middle.</p>
  30.       <p class="time">Time: 40 minutes</p>
  31.     </li>
  32.     <li>
  33.       <p>Toss quinoa, chicken, kale, and Caesar dressing until coated.</p>
  34.       <p class="time">Time: 4 minutes</p>
  35.     </li>
  36.     <li>
  37.       <p>Add walnuts and olive oil as garnish.</p>
  38.       <p class="time">Time: 1 minute</p>
  39.     </li>
  40.   </ol>
  41.  
  42.   <p class="citation">Find this recipe and more <a href="http://www.myrecipes.com/recipe/kale-caesar-salad-chicken" target="_blank" class="external-link">here</a>.</p>
  43.  
  44. </body>
  45.  
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement