From d882dfcb48e6a7aaff8e799f8b956b9e933bfa82 Mon Sep 17 00:00:00 2001 From: Chris Bracco Date: Sat, 3 Apr 2021 15:53:12 -0400 Subject: [PATCH 1/2] Add picture element; Revise other image examples --- index.html | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 0b35c3e..08f0c08 100644 --- a/index.html +++ b/index.html @@ -323,15 +323,23 @@

Images

-

No <figure> element

-

Image alt text

-

Wrapped in a <figure> element, no <figcaption>

-
Image alt text
-

Wrapped in a <figure> element, with a <figcaption>

+

Plain <img> element

+

Photo of a kitten

+

<figure> element with <img> element

+
Photo of a kitten
+

<figure> element with <img> and <figcaption> elements

- Image alt text + Photo of a kitten
Here is a caption for this image.
+

<figure> element with a <picture> element

+
+ + + Photo of a kitten + +
From a0c969b93ef89e063f2fddcdd9eed4d056fc9cdf Mon Sep 17 00:00:00 2001 From: Chris Bracco Date: Sat, 3 Apr 2021 15:54:12 -0400 Subject: [PATCH 2/2] v0.9.5 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c2b88f..33021ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.9.5 (April 3, 2021) + +- Add element (thanks @AurelioDeRosa!). + # 0.9.4 (April 3, 2021) - Remove unnecessary role attributes. Update headings (thanks @gipsi!). diff --git a/package.json b/package.json index 93d0fbb..225ec30 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html5-test-page", - "version": "0.9.4", + "version": "0.9.5", "description": "A page filled with common HTML elements to be used for testing purposes.", "main": "index.html", "scripts": {