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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Recipe -->
<div class="recipe" itemscope itemtype="http://schema.org/Recipe">
<div class="infobox">
<!-- Image -->
<div class="photobox">
<a
href="https://www.foodandwine.com/thmb/CelB1cgvkv8eKawH2AbwFxk-OPg=/400x0/filters:no_upscale():max_bytes(150000):strip_icc():gifv()/2012-r-xl-lemony-broccoli-salad-2000-4e8c612ccf7d47e5845797e9df0a6285.jpg"
>
<img
src="Images/85C16C9B-37F2-4671-9371-7B3C78E17EC7/A3012487-CBBE-46D6-A629-0609515D9A22.jpg"
itemprop="image"
class="photo photoswipe"
/>
</a>
</div>
<!-- Name -->
<h1 itemprop="name" class="name">Lemony Broccoli Salad</h1>
<!-- Info -->
<!-- Rating, categories -->
<p itemprop="aggregateRating" class="rating" value="0"></p>
<p class="metadata">
<!-- Cook time, prep time, servings, difficulty -->
<b>Cook Time: </b><span itemprop="cookTime">10 mins</span>
<b>Servings: </b><span itemprop="recipeYield">6</span>
<!-- Source -->
<b>Source: </b>
<a
itemprop="url"
href="https://www.foodandwine.com/recipes/lemony-broccoli-salad"
>
<span itemprop="author">foodandwine.com</span>
</a>
</p>
<div class="clear"></div>
</div>
<div class="left-column">
<!-- Ingredients -->
<div class="ingredientsbox">
<h3 class="subhead">Ingredients</h3>
<div class="ingredients text">
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> large head of broccoli (1 1/2 pounds), cut into
1-inch florets, stems peeled and sliced 1/2 inch thick
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1/4</strong> cup extra-virgin olive oil
</p>
<p class="line" itemprop="recipeIngredient">
<strong>2</strong> tablespoons red wine vinegar
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> tablespoon fresh lemon juice
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> teaspoon finely grated lemon zest
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> small shallot, minced
</p>
<p class="line" itemprop="recipeIngredient">Kosher salt</p>
<p class="line" itemprop="recipeIngredient">
freshly ground pepper
</p>
</div>
</div>
<!-- Nutrition (in two-column mode it goes below the ingredients) -->
</div>
<div class="right-column">
<!-- Description -->
<!-- Directions -->
<div class="directionsbox">
<h3 class="subhead">Directions</h3>
<div itemprop="recipeInstructions" class="directions text">
<p class="line">
Bring a large saucepan of salted water to a boil. Add the broccoli
florets and stems and cook until bright green and just tender,
about 5 minutes. Drain and rinse the broccoli under cold water
until cooled; pat dry.
</p>
<p class="line">
In a large bowl, whisk the olive oil with the vinegar, lemon
juice, lemon zest and shallot and season with salt and pepper. Add
the broccoli, toss to coat and serve.
</p>
<p class="line">Make Ahead</p>
<p class="line">
The cooked and chilled broccoli can be refrigerated overnight.
Toss the broccoli with the dressing just before serving.
</p>
</div>
</div>
<!-- Notes -->
<!-- Nutrition (in regular mode it goes below the notes) -->
<!-- Used in two different places depending on the recipe layout -->
</div>
<div class="clear"></div>
</div>
</body>
</html>
|