mirror of
https://github.com/cbracco/html5-test-page.git
synced 2025-08-21 05:11:45 +02:00
Compare commits
7 Commits
0.9.1
...
racztiborz
Author | SHA1 | Date | |
---|---|---|---|
|
4b6224d52e | ||
|
5218026335 | ||
|
e24e4b2b64 | ||
|
2e602b623d | ||
|
9780f2af62 | ||
|
a65554bba1 | ||
|
a9fa7e0dfb |
@@ -1,3 +1,11 @@
|
|||||||
|
# 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)
|
# 0.9.1 (April 3, 2021)
|
||||||
|
|
||||||
- Add background images (thanks @97arushisharma!).
|
- Add background images (thanks @97arushisharma!).
|
||||||
|
72
index.html
72
index.html
@@ -93,15 +93,71 @@
|
|||||||
<dd>This is a definition list division.</dd>
|
<dd>This is a definition list division.</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<h3>Ordered List</h3>
|
<h3>Ordered List</h3>
|
||||||
<ol>
|
<ol type="1">
|
||||||
<li>List Item 1</li>
|
<li>List Item 1</li>
|
||||||
<li>List Item 2</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>
|
<li>List Item 3</li>
|
||||||
</ol>
|
</ol>
|
||||||
<h3>Unordered List</h3>
|
<h3>Unordered List</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>List Item 1</li>
|
<li>List Item 1</li>
|
||||||
<li>List Item 2</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>
|
<li>List Item 3</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -379,6 +435,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">
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "html5-test-page",
|
"name": "html5-test-page",
|
||||||
"version": "0.9.1",
|
"version": "0.9.3",
|
||||||
"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