-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!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>Quinoa and Kale Salad Recipe</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<img src="https://content.codecademy.com/courses/freelance-1/unit-2/salad.jpg" alt="Kale Caeasar Salad"/>
<h1>Kale Caesar Quinoa Salad with Roasted Chicken</h1>
<p class="description">Kale and quinoa provide a healthy base for roasted chicken topped with a light Caesar sauce.</p>
<p id="cook-time">Total time: 45 minutes</p>
<h2>Ingredients</h2>
<ul class="ingredients">
<li>1/4 cup kale</li>
<li>1 cup Quinoa</li>
<li>2 tbsp Olive Oil</li>
<li>1 chicken breast</li>
<li>Caesar Dressing</li>
</ul>
<h2>Preparation</h2>
<ol>
<li>
<p>Prepare quinoa and roast chicken until golden brown and 165 in middle.</p>
<p class="time">Time: 40 minutes</p>
</li>
<li>
<p>Toss quinoa, chicken, kale, and Caesar dressing until coated.</p>
<p class="time">Time: 4 minutes</p>
</li>
<li>
<p>Add walnuts and olive oil as garnish.</p>
<p class="time">Time: 1 minute</p>
</li>
</ol>
<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>
</body>
</html>