-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRecipeExample.xml
More file actions
32 lines (32 loc) · 906 Bytes
/
Copy pathRecipeExample.xml
File metadata and controls
32 lines (32 loc) · 906 Bytes
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
<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:r="http://www.tutortutor.ca/">
<head>
<title>
Recipe
</title>
</head>
<body>
<r:recipe>
<r:title style="color:blue;">Grilled Cheese Sandwich</r:title>
<r:ingredients>
<ul>
<li>
<r:ingredient qty="2">bread slice</r:ingredient>
</li>
<li>
<r:ingredient>cheese slice</r:ingredient>
</li>
<li>
<r:ingredient qty="2">margarine pat</r:ingredient>
</li>
</ul>
</r:ingredients>
<p>
<r:instructions>
Place one slice of bread on work surface; top with cheese slices, cutting cheese to fit so all the bread is covered (overlap as necessary). Top with remaining bread slice. Spread with half the butter. Place, buttered side down, in a skillet over medium heat. Carefully butter top bread slice.
</r:instructions>
</p>
</r:recipe>
</body>
</html>