-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML
More file actions
40 lines (40 loc) · 821 Bytes
/
HTML
File metadata and controls
40 lines (40 loc) · 821 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
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Relative Imaging</title>
</head>
<body>
<h1>
<figure>
<img src="images/logo.gif"
alt="From A to Zucchini"/>
</figure>
</h1>
<figure>
<img src="images/chocolate-islands.jpg"
alt="Chocolate Islands"
title="Chocolate Islands Individual Cakes" />
<p>
<figcaption>
This recipe for individual chocolate cakes is so simple and is so delectable!
</figcaption>
</p>
</figure>
<figure>
<h4>More Recipies</h4>
</figure>
<p>
<figure>
<img src="images/lemon-posset.jpg"
alt="Lemon Posset"
title="Lemon Posset Dessert"/>
<img src="images/roasted-brussel-sprouts.jpg"
alt="Roasted Brussel Sprouts"
Title="Roasted Brussel Sprouts Side Dish"/>
<img src="images/zucchini-cake.jpg"
alt="Zucchini Cake"
title="Zucchini Cake No Frosting"/>
</figure>
</body>
</html>