5 Commits

Author SHA1 Message Date
Chris Bracco
90c0472293 v0.9.6 2021-04-03 16:01:35 -04:00
Chris Bracco
1c2a244555 Remove classes and valid/invalid inputs 2021-04-03 16:00:59 -04:00
Chris Bracco
931b8637d5 Merge pull request #39 from cbracco/issue/13-picture-element
Add picture element
2021-04-03 15:54:44 -04:00
Chris Bracco
e191677997 Merge pull request #27 from TomasHubelbauer/patch-1
Remove duped word
2021-04-03 15:45:24 -04:00
Tomáš Hübelbauer
f3ee1b3575 Remove duped word 2020-04-05 08:46:46 +02:00
3 changed files with 13 additions and 17 deletions

View File

@@ -1,3 +1,7 @@
# 0.9.6 (April 3, 2021)
- Remove classes and valid/invalid inputs.
# 0.9.5 (April 3, 2021)
- Add <picture> element (thanks @AurelioDeRosa!).

View File

@@ -6,7 +6,7 @@
<title>HTML5 Test Page</title>
</head>
<body>
<div id="top" class="page" role="document">
<div id="top" role="document">
<header>
<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>
@@ -295,7 +295,7 @@
<p><s>This text has a strikethrough</s>.</p>
<p>Superscript<sup>®</sup>.</p>
<p>Subscript for things like H<sub>2</sub>O.</p>
<p><small>This small text is small for for fine print, etc.</small></p>
<p><small>This small text is small for fine print, etc.</small></p>
<p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
<p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
<p><cite>This is a citation.</cite></p>
@@ -428,15 +428,7 @@
<input id="input__text2" type="number" placeholder="Enter a Number">
</p>
<p>
<label for="input__text3" class="error">Error</label>
<input id="input__text3" class="is-error" type="text" placeholder="Text Input">
</p>
<p>
<label for="input__text4" class="valid">Valid</label>
<input id="input__text4" class="is-valid" type="text" placeholder="Text Input">
</p>
<p>
<label for="input__file" class="button">File Input</label>
<label for="input__file">File Input</label>
<input id="input__file" type="file">
</p>
</fieldset>
@@ -467,7 +459,7 @@
<p><a href="#top">[Top]</a></p>
<fieldset id="forms__checkbox">
<legend>Checkboxes</legend>
<ul class="list list--bare">
<ul>
<li><label for="checkbox1"><input id="checkbox1" name="checkbox" type="checkbox" checked="checked"> Choice A</label></li>
<li><label for="checkbox2"><input id="checkbox2" name="checkbox" type="checkbox"> Choice B</label></li>
<li><label for="checkbox3"><input id="checkbox3" name="checkbox" type="checkbox"> Choice C</label></li>
@@ -476,10 +468,10 @@
<p><a href="#top">[Top]</a></p>
<fieldset id="forms__radio">
<legend>Radio buttons</legend>
<ul class="list list--bare">
<li><label for="radio1"><input id="radio1" name="radio" type="radio" class="radio" checked="checked"> Option 1</label></li>
<li><label for="radio2"><input id="radio2" name="radio" type="radio" class="radio"> Option 2</label></li>
<li><label for="radio3"><input id="radio3" name="radio" type="radio" class="radio"> Option 3</label></li>
<ul>
<li><label for="radio1"><input id="radio1" name="radio" type="radio" checked="checked"> Option 1</label></li>
<li><label for="radio2"><input id="radio2" name="radio" type="radio"> Option 2</label></li>
<li><label for="radio3"><input id="radio3" name="radio" type="radio"> Option 3</label></li>
</ul>
</fieldset>
<p><a href="#top">[Top]</a></p>

View File

@@ -1,6 +1,6 @@
{
"name": "html5-test-page",
"version": "0.9.5",
"version": "0.9.6",
"description": "A page filled with common HTML elements to be used for testing purposes.",
"main": "index.html",
"scripts": {