-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathstyling-lists.html
More file actions
56 lines (44 loc) · 2.52 KB
/
Copy pathstyling-lists.html
File metadata and controls
56 lines (44 loc) · 2.52 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Styling lists</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1> Styling lists</h1>
<h2>Shopping (unordered) list</h2>
<p>Paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference.</p>
<ul>
<li>Humous</li>
<li>Pitta</li>
<li>Green salad</li>
<li>Halloumi</li>
</ul>
<h2>Recipe (ordered) list</h2>
<p>Paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference.</p>
<ol>
<li>Toast pitta, leave to cool, then slice down the edge.</li>
<li>Fry the halloumi in a shallow, non-stick pan, until browned on both sides.</li>
<li>Wash and chop the salad.</li>
<li>Fill pitta with salad, humous, and fried halloumi.</li>
</ol>
<h2>Ingredient description list</h2>
<p>Paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference, paragraph for reference.</p>
<dl>
<dt><h3>Humous</h3></dt>
<dd> <img src="https://i0.wp.com/saucydressings.com/wp-content/uploads/2020/06/humous.jpg?fit=800%2C601&ssl=1" width="200"></dd>
<dd>A thick dip/sauce generally made from chick peas blended with tahini, lemon juice, salt, garlic, and other ingredients.</dd>
<dt><h3>Pitta</h3></dt>
<dd> <img src="https://hips.hearstapps.com/hmg-prod/images/delish-190621-homemade-pita-0159-landscape-pf-1567692674.jpg?crop=1xw:0.8441943127962085xh;center,top&resize=1200:*" width = 300></dd>
<dd>A soft, slightly leavened flatbread.</dd>
<dt><h3>Halloumi</h3></dt>
<dd> <img src="https://www.euractiv.com/wp-content/uploads/sites/2/2021/01/shutterstock_444100357-800x450.jpg" width = 300></dd>
<dd>A semi-hard, unripened, brined cheese with a higher-than-usual melting point, usually made from goat/sheep milk.</dd>
<dt><h3>Green salad</h3></dt>
<dd> <img src="https://www.thespruceeats.com/thmb/dLm92KvGvS8zqlR_sw6UCwHUWbE=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/sandys-wilted-lettuce-with-hot-bacon-dressing-3061232-hero-01-5e012d6d24b24b8db86c91012aa65ca6.jpg" width = 300></dd>
<dd>That green healthy stuff that many of us just use to garnish kebabs.</dd>
</dl>
</body>
</html>