mirror of
https://github.com/cbracco/html5-test-page.git
synced 2025-08-05 05:37:25 +02:00
added images section to embedded content
This commit is contained in:
17
test.html
17
test.html
@@ -29,6 +29,7 @@
|
|||||||
<li>
|
<li>
|
||||||
<a href="#embedded">Embedded content</a>
|
<a href="#embedded">Embedded content</a>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="#embedded__images">Images</a></li>
|
||||||
<li><a href="#embedded__audio">Audio</a></li>
|
<li><a href="#embedded__audio">Audio</a></li>
|
||||||
<li><a href="#embedded__video">Video</a></li>
|
<li><a href="#embedded__video">Video</a></li>
|
||||||
<li><a href="#embedded__canvas">Canvas</a></li>
|
<li><a href="#embedded__canvas">Canvas</a></li>
|
||||||
@@ -264,6 +265,22 @@ p q r s t u v w x y z { | } ~ </pre>
|
|||||||
<section id="embedded">
|
<section id="embedded">
|
||||||
<header><h1>Embedded content</h1></header>
|
<header><h1>Embedded content</h1></header>
|
||||||
|
|
||||||
|
<article id="embedded__images">
|
||||||
|
<header><h2>Images</h2></header>
|
||||||
|
<div>
|
||||||
|
<h3>No <code><figure></code> element</h3>
|
||||||
|
<p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
|
||||||
|
<h3>Wrapped in a <code><figure></code> element, no <code><figcaption></code></h3>
|
||||||
|
<figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
|
||||||
|
<h3>Wrapped in a <code><figure></code> element, with a <code><figcaption></code></h3>
|
||||||
|
<figure>
|
||||||
|
<img src="http://placekitten.com/360/360" alt="Image alt text">
|
||||||
|
<figcaption>Here is a caption for this image.</figcaption>
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
|
</article>
|
||||||
|
|
||||||
<article id="embedded__audio">
|
<article id="embedded__audio">
|
||||||
<header><h2>Audio</h2></header>
|
<header><h2>Audio</h2></header>
|
||||||
<div><audio controls="">audio</audio></div>
|
<div><audio controls="">audio</audio></div>
|
||||||
|
Reference in New Issue
Block a user