mirror of
https://github.com/cbracco/html5-test-page.git
synced 2025-08-22 21:53:47 +02:00
Compare commits
30 Commits
0.6.2
...
issue/13-p
Author | SHA1 | Date | |
---|---|---|---|
|
a0c969b93e | ||
|
d882dfcb48 | ||
|
328c708a5e | ||
|
a557aa534e | ||
|
4e522a8e67 | ||
|
35cd96c06b | ||
|
4b6224d52e | ||
|
5218026335 | ||
|
e24e4b2b64 | ||
|
2e602b623d | ||
|
9780f2af62 | ||
|
a65554bba1 | ||
|
7611bf513b | ||
|
9c92199a7e | ||
|
5cdb76d0fb | ||
|
a7b56dec9b | ||
|
8f241cf5f1 | ||
|
1fecd23aa7 | ||
|
66a77835cc | ||
|
ab4675eae5 | ||
|
b5cc38cc84 | ||
|
a9fa7e0dfb | ||
|
3b85be264e | ||
|
d4d5224177 | ||
|
23c3d5f7c9 | ||
|
ffd3e00512 | ||
|
3a0973f6fa | ||
|
58308fc6bd | ||
|
f54b5040be | ||
|
c7d89818d6 |
3
.editorconfig
Normal file
3
.editorconfig
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
32
CHANGELOG.md
32
CHANGELOG.md
@@ -1,3 +1,35 @@
|
|||||||
|
# 0.9.5 (April 3, 2021)
|
||||||
|
|
||||||
|
- Add <picture> element (thanks @AurelioDeRosa!).
|
||||||
|
|
||||||
|
# 0.9.4 (April 3, 2021)
|
||||||
|
|
||||||
|
- Remove unnecessary role attributes. Update headings (thanks @gipsi!).
|
||||||
|
|
||||||
|
# 0.9.3 (April 3, 2021)
|
||||||
|
|
||||||
|
- Add multiple <select> (thanks @racztiborzoltan!).
|
||||||
|
|
||||||
|
# 0.9.2 (April 3, 2021)
|
||||||
|
|
||||||
|
- Add nested lists (thanks @charul97!).
|
||||||
|
|
||||||
|
# 0.9.1 (April 3, 2021)
|
||||||
|
|
||||||
|
- Add background images (thanks @97arushisharma!).
|
||||||
|
|
||||||
|
# 0.9.0 (April 3, 2021)
|
||||||
|
|
||||||
|
- Add <details>, <address>, <object>, <embed>, <datalist> (thanks @jKratzik!).
|
||||||
|
|
||||||
|
# 0.8.0 (March 19, 2018)
|
||||||
|
|
||||||
|
- Add test for HTML comments (thanks @ep00ch!).
|
||||||
|
|
||||||
|
# 0.7.1 (April 5, 2016)
|
||||||
|
|
||||||
|
- Add missing form button types (thanks @gnowland!).
|
||||||
|
|
||||||
# 0.6.2 (March 14, 2016)
|
# 0.6.2 (March 14, 2016)
|
||||||
|
|
||||||
- Minor formatting change (thanks @gilluminate!).
|
- Minor formatting change (thanks @gilluminate!).
|
||||||
|
248
index.html
248
index.html
@@ -1,4 +1,4 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
@@ -7,29 +7,33 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="top" class="page" role="document">
|
<div id="top" class="page" role="document">
|
||||||
<header role="banner">
|
<header>
|
||||||
<h1>HTML5 Test Page</h1>
|
<h1>HTML5 Test Page</h1>
|
||||||
<p>This is a test page filled with common HTML elements to be used to provide visual feedback whilst building CSS systems and frameworks.</p>
|
<p>This is a test page filled with common HTML elements to be used to provide visual feedback whilst building CSS systems and frameworks.</p>
|
||||||
</header>
|
</header>
|
||||||
<nav role="navigation">
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="#text">Text</a>
|
<a href="#text">Text</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#text__headings">Headings</a></li>
|
<li><a href="#text__headings">Headings</a></li>
|
||||||
<li><a href="#text__paragraphs">Paragraphs</a></li>
|
<li><a href="#text__paragraphs">Paragraphs</a></li>
|
||||||
<li><a href="#text__blockquotes">Blockquotes</a></li>
|
|
||||||
<li><a href="#text__lists">Lists</a></li>
|
<li><a href="#text__lists">Lists</a></li>
|
||||||
|
<li><a href="#text__blockquotes">Blockquotes</a></li>
|
||||||
|
<li><a href="#text__details">Details / Summary</a></li>
|
||||||
|
<li><a href="#text__address">Address</a></li>
|
||||||
<li><a href="#text__hr">Horizontal rules</a></li>
|
<li><a href="#text__hr">Horizontal rules</a></li>
|
||||||
<li><a href="#text__tables">Tabular data</a></li>
|
<li><a href="#text__tables">Tabular data</a></li>
|
||||||
<li><a href="#text__code">Code</a></li>
|
<li><a href="#text__code">Code</a></li>
|
||||||
<li><a href="#text__inline">Inline elements</a></li>
|
<li><a href="#text__inline">Inline elements</a></li>
|
||||||
|
<li><a href="#text__comments">HTML Comments</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<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__images">Images</a></li>
|
||||||
|
<li><a href="#embedded__bgimages">Background 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>
|
||||||
@@ -37,6 +41,8 @@
|
|||||||
<li><a href="#embedded__progress">Progress</a></li>
|
<li><a href="#embedded__progress">Progress</a></li>
|
||||||
<li><a href="#embedded__svg">Inline SVG</a></li>
|
<li><a href="#embedded__svg">Inline SVG</a></li>
|
||||||
<li><a href="#embedded__iframe">IFrames</a></li>
|
<li><a href="#embedded__iframe">IFrames</a></li>
|
||||||
|
<li><a href="#embedded__embed">Embed</a></li>
|
||||||
|
<li><a href="#embedded__object">Object</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
@@ -53,12 +59,12 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<main role="main">
|
<main>
|
||||||
<section id="text">
|
<section id="text">
|
||||||
<header><h1>Text</h1></header>
|
<header><h1>Text</h1></header>
|
||||||
<article id="text__headings">
|
<article id="text__headings">
|
||||||
<header>
|
<header>
|
||||||
<h1>Headings</h1>
|
<h2>Headings</h2>
|
||||||
</header>
|
</header>
|
||||||
<div>
|
<div>
|
||||||
<h1>Heading 1</h1>
|
<h1>Heading 1</h1>
|
||||||
@@ -71,12 +77,102 @@
|
|||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
<article id="text__paragraphs">
|
<article id="text__paragraphs">
|
||||||
<header><h1>Paragraphs</h1></header>
|
<header><h2>Paragraphs</h2></header>
|
||||||
<div>
|
<div>
|
||||||
<p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
|
<p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
|
||||||
</div>
|
</div>
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
|
<article id="text__blockquotes">
|
||||||
|
<header><h2>Blockquotes</h2></header>
|
||||||
|
<div>
|
||||||
|
<blockquote>
|
||||||
|
<p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
|
||||||
|
<p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
|
||||||
|
<cite><a href="#!">Said no one, ever.</a></cite>
|
||||||
|
</blockquote>
|
||||||
|
</div>
|
||||||
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
|
</article>
|
||||||
|
<article id="text__lists">
|
||||||
|
<header><h2>Lists</h2></header>
|
||||||
|
<div>
|
||||||
|
<h3>Definition list</h3>
|
||||||
|
<dl>
|
||||||
|
<dt>Definition List Title</dt>
|
||||||
|
<dd>This is a definition list division.</dd>
|
||||||
|
</dl>
|
||||||
|
<h3>Ordered List</h3>
|
||||||
|
<ol type="1">
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ol type="A">
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ol type="a">
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ol type="I">
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ol type="i">
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>List Item 2</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ol>
|
||||||
|
<h3>Unordered List</h3>
|
||||||
|
<ul>
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ul>
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ul>
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ul>
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>
|
||||||
|
List Item 2
|
||||||
|
<ul>
|
||||||
|
<li>List Item 1</li>
|
||||||
|
<li>List Item 2</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>List Item 3</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
|
</article>
|
||||||
<article id="text__blockquotes">
|
<article id="text__blockquotes">
|
||||||
<header><h1>Blockquotes</h1></header>
|
<header><h1>Blockquotes</h1></header>
|
||||||
<div>
|
<div>
|
||||||
@@ -88,38 +184,34 @@
|
|||||||
</div>
|
</div>
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
<article id="text__lists">
|
<article id="text__details">
|
||||||
<header><h1>Lists</h1></header>
|
<header><h1>Details / Summary</h1></header>
|
||||||
<div>
|
<details>
|
||||||
<h3>Definition list</h3>
|
<summary>Expand for details</summary>
|
||||||
<dl>
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum, odio! Odio natus ullam ad quaerat, eaque necessitatibus, aliquid distinctio similique voluptatibus dicta consequuntur animi. Quaerat facilis quidem unde eos! Ipsa.</p>
|
||||||
<dt>Definition List Title</dt>
|
</details>
|
||||||
<dd>This is a definition list division.</dd>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</dl>
|
</article>
|
||||||
<h3>Ordered List</h3>
|
<article id="text__address">
|
||||||
<ol>
|
<header><h1>Address</h1></header>
|
||||||
<li>List Item 1</li>
|
<address>
|
||||||
<li>List Item 2</li>
|
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
|
||||||
<li>List Item 3</li>
|
Visit us at:<br>
|
||||||
</ol>
|
Example.com<br>
|
||||||
<h3>Unordered List</h3>
|
Box 564, Disneyland<br>
|
||||||
<ul>
|
USA
|
||||||
<li>List Item 1</li>
|
</address>
|
||||||
<li>List Item 2</li>
|
|
||||||
<li>List Item 3</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
<article id="text__hr">
|
<article id="text__hr">
|
||||||
<header><h1>Horizontal rules</h1></header>
|
<header><h2>Horizontal rules</h2></header>
|
||||||
<div>
|
<div>
|
||||||
<hr>
|
<hr>
|
||||||
</div>
|
</div>
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
<article id="text__tables">
|
<article id="text__tables">
|
||||||
<header><h1>Tabular data</h1></header>
|
<header><h2>Tabular data</h2></header>
|
||||||
<table>
|
<table>
|
||||||
<caption>Table Caption</caption>
|
<caption>Table Caption</caption>
|
||||||
<thead>
|
<thead>
|
||||||
@@ -174,7 +266,7 @@
|
|||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
<article id="text__code">
|
<article id="text__code">
|
||||||
<header><h1>Code</h1></header>
|
<header><h2>Code</h2></header>
|
||||||
<div>
|
<div>
|
||||||
<p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
|
<p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
|
||||||
<p><strong>Inline code:</strong> <code><div>code</div></code></p>
|
<p><strong>Inline code:</strong> <code><div>code</div></code></p>
|
||||||
@@ -191,7 +283,7 @@
|
|||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
<article id="text__inline">
|
<article id="text__inline">
|
||||||
<header><h1>Inline elements</h1></header>
|
<header><h2>Inline elements</h2></header>
|
||||||
<div>
|
<div>
|
||||||
<p><a href="#!">This is a text link</a>.</p>
|
<p><a href="#!">This is a text link</a>.</p>
|
||||||
<p><strong>Strong is used to indicate strong importance.</strong></p>
|
<p><strong>Strong is used to indicate strong importance.</strong></p>
|
||||||
@@ -214,25 +306,48 @@
|
|||||||
</div>
|
</div>
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
|
<article id="text__comments">
|
||||||
|
<header><h2>HTML Comments</h2></header>
|
||||||
|
<div>
|
||||||
|
<p>There is comment here: <!--This comment should not be displayed--></p>
|
||||||
|
<p>There is a comment spanning multiple tags and lines below here.</p>
|
||||||
|
<!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
|
||||||
|
<p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
|
||||||
|
<p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
|
||||||
|
</div>
|
||||||
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="embedded">
|
<section id="embedded">
|
||||||
<header><h1>Embedded content</h1></header>
|
<header><h2>Embedded content</h2></header>
|
||||||
<article id="embedded__images">
|
<article id="embedded__images">
|
||||||
<header><h2>Images</h2></header>
|
<header><h2>Images</h2></header>
|
||||||
<div>
|
<div>
|
||||||
<h3>No <code><figure></code> element</h3>
|
<h3>Plain <code><img></code> element</h3>
|
||||||
<p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
|
<p><img src="https://placekitten.com/480/480" alt="Photo of a kitten"></p>
|
||||||
<h3>Wrapped in a <code><figure></code> element, no <code><figcaption></code></h3>
|
<h3><code><figure></code> element with <code><img></code> element</h3>
|
||||||
<figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
|
<figure><img src="https://placekitten.com/420/420" alt="Photo of a kitten"></figure>
|
||||||
<h3>Wrapped in a <code><figure></code> element, with a <code><figcaption></code></h3>
|
<h3><code><figure></code> element with <code><img></code> and <code><figcaption></code> elements</h3>
|
||||||
<figure>
|
<figure>
|
||||||
<img src="http://placekitten.com/420/420" alt="Image alt text">
|
<img src="https://placekitten.com/420/420" alt="Photo of a kitten">
|
||||||
<figcaption>Here is a caption for this image.</figcaption>
|
<figcaption>Here is a caption for this image.</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
|
<h3><code><figure></code> element with a <code><picture></code> element</h3>
|
||||||
|
<figure>
|
||||||
|
<picture>
|
||||||
|
<source srcset="https://placekitten.com/800/800"
|
||||||
|
media="(min-width: 800px)">
|
||||||
|
<img src="https://placekitten.com/420/420" alt="Photo of a kitten" />
|
||||||
|
</picture>
|
||||||
|
</figure>
|
||||||
</div>
|
</div>
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
|
<article id="embedded__bgimages">
|
||||||
|
<header><h2>Background images</h2></header>
|
||||||
|
<div style="background-image:url('https://placekitten.com/300/300'); width:300px; height: 300px;"></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>
|
||||||
@@ -268,9 +383,19 @@
|
|||||||
<div><iframe src="index.html" height="300"></iframe></div>
|
<div><iframe src="index.html" height="300"></iframe></div>
|
||||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
</article>
|
</article>
|
||||||
|
<article id="embedded__embed">
|
||||||
|
<header><h2>Embed</h2></header>
|
||||||
|
<div><embed src="index.html" height="300"></div>
|
||||||
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
|
</article>
|
||||||
|
<article id="embedded__object">
|
||||||
|
<header><h2>Object</h2></header>
|
||||||
|
<div><object data="index.html" height="300"></object></div>
|
||||||
|
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||||
|
</article>
|
||||||
</section>
|
</section>
|
||||||
<section id="forms">
|
<section id="forms">
|
||||||
<header><h1>Form elements</h1></header>
|
<header><h2>Form elements</h2></header>
|
||||||
<form>
|
<form>
|
||||||
<fieldset id="forms__input">
|
<fieldset id="forms__input">
|
||||||
<legend>Input fields</legend>
|
<legend>Input fields</legend>
|
||||||
@@ -284,7 +409,7 @@
|
|||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<label for="input__webaddress">Web Address</label>
|
<label for="input__webaddress">Web Address</label>
|
||||||
<input id="input__webaddress" type="url" placeholder="http://yoursite.com">
|
<input id="input__webaddress" type="url" placeholder="https://yoursite.com">
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<label for="input__emailaddress">Email Address</label>
|
<label for="input__emailaddress">Email Address</label>
|
||||||
@@ -310,6 +435,10 @@
|
|||||||
<label for="input__text4" class="valid">Valid</label>
|
<label for="input__text4" class="valid">Valid</label>
|
||||||
<input id="input__text4" class="is-valid" type="text" placeholder="Text Input">
|
<input id="input__text4" class="is-valid" type="text" placeholder="Text Input">
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="input__file" class="button">File Input</label>
|
||||||
|
<input id="input__file" type="file">
|
||||||
|
</p>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p><a href="#top">[Top]</a></p>
|
<p><a href="#top">[Top]</a></p>
|
||||||
<fieldset id="forms__select">
|
<fieldset id="forms__select">
|
||||||
@@ -324,6 +453,16 @@
|
|||||||
</optgroup>
|
</optgroup>
|
||||||
</select>
|
</select>
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="select_multiple">Select (multiple)</label>
|
||||||
|
<select id="select_multiple" multiple="multiple">
|
||||||
|
<optgroup label="Option Group">
|
||||||
|
<option>Option One</option>
|
||||||
|
<option>Option Two</option>
|
||||||
|
<option>Option Three</option>
|
||||||
|
</optgroup>
|
||||||
|
</select>
|
||||||
|
</p>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p><a href="#top">[Top]</a></p>
|
<p><a href="#top">[Top]</a></p>
|
||||||
<fieldset id="forms__checkbox">
|
<fieldset id="forms__checkbox">
|
||||||
@@ -386,22 +525,37 @@
|
|||||||
<label for="idtl">Datetime-local input</label>
|
<label for="idtl">Datetime-local input</label>
|
||||||
<input type="datetime-local" id="idtl" value="1970-01-01T00:00">
|
<input type="datetime-local" id="idtl" value="1970-01-01T00:00">
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="idl">Datalist</label>
|
||||||
|
<input type="text" id="idl" list="example-list">
|
||||||
|
<datalist id="example-list">
|
||||||
|
<option value="Example #1">
|
||||||
|
<option value="Example #2">
|
||||||
|
<option value="Example #3">
|
||||||
|
</datalist>
|
||||||
|
</p>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p><a href="#top">[Top]</a></p>
|
<p><a href="#top">[Top]</a></p>
|
||||||
<fieldset id="forms__action">
|
<fieldset id="forms__action">
|
||||||
<legend>Action buttons</legend>
|
<legend>Action buttons</legend>
|
||||||
<p>
|
<p>
|
||||||
<input type="submit" value="Input">
|
<input type="submit" value="<input type=submit>">
|
||||||
<button type="submit">Button</button>
|
<input type="button" value="<input type=button>">
|
||||||
<input type="reset" value="Reset">
|
<input type="reset" value="<input type=reset>">
|
||||||
<input type="submit" value="Disabled" disabled>
|
<input type="submit" value="<input disabled>" disabled>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<button type="submit"><button type=submit></button>
|
||||||
|
<button type="button"><button type=button></button>
|
||||||
|
<button type="reset"><button type=reset></button>
|
||||||
|
<button type="button" disabled><button disabled></button>
|
||||||
</p>
|
</p>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p><a href="#top">[Top]</a></p>
|
<p><a href="#top">[Top]</a></p>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer role="contentinfo">
|
<footer>
|
||||||
<p>Made by <a href="http://twitter.com/cbracco">@cbracco</a>. Code on <a href="http://github.com/cbracco/html5-test-page">GitHub</a>.</p>
|
<p>Made by <a href="http://twitter.com/cbracco">@cbracco</a>. Code on <a href="http://github.com/cbracco/html5-test-page">GitHub</a>.</p>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
5
package-lock.json
generated
Normal file
5
package-lock.json
generated
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"name": "html5-test-page",
|
||||||
|
"version": "0.8.0",
|
||||||
|
"lockfileVersion": 1
|
||||||
|
}
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "html5-test-page",
|
"name": "html5-test-page",
|
||||||
"version": "0.6.2",
|
"version": "0.9.5",
|
||||||
"description": "A page filled with common HTML elements to be used for testing purposes.",
|
"description": "A page filled with common HTML elements to be used for testing purposes.",
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Reference in New Issue
Block a user