mirror of
https://github.com/cbracco/html5-test-page.git
synced 2025-08-22 13:43:10 +02:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
3a0973f6fa | ||
|
58308fc6bd | ||
|
f54b5040be | ||
|
c7d89818d6 | ||
|
5ff15df75d | ||
|
5c388acf5e | ||
|
a6d11b25a2 |
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,10 +1,19 @@
|
||||
# 0.6.1 (February 2, 2015)
|
||||
# 0.7.1 (April 5, 2016)
|
||||
|
||||
- Add missing form button types (thanks @gnowland!).
|
||||
|
||||
# 0.6.2 (March 14, 2016)
|
||||
|
||||
- Minor formatting change (thanks @gilluminate!).
|
||||
- Fix incorrect years in `CHANGELOG.md`.
|
||||
|
||||
# 0.6.1 (February 2, 2016)
|
||||
|
||||
- Simplify the instructions in `CHANGELOG.md`.
|
||||
- Rename `LICENSE.md` to `LICENSE`.
|
||||
- Update `README.md` content.
|
||||
|
||||
# 0.6.0 (February 1, 2015)
|
||||
# 0.6.0 (February 1, 2016)
|
||||
|
||||
- Update indentation and whitespace.
|
||||
- Add to npm.
|
||||
|
18
index.html
18
index.html
@@ -206,8 +206,8 @@
|
||||
<p><small>This small text is small for 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><p>The <dfn>dfn element</dfn> indicates a definition.</p>
|
||||
<p><cite>This is a citation.</cite></p>
|
||||
<p>The <dfn>dfn element</dfn> indicates a definition.</p>
|
||||
<p>The <mark>mark element</mark> indicates a highlight.</p>
|
||||
<p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
|
||||
<p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
|
||||
@@ -391,10 +391,16 @@
|
||||
<fieldset id="forms__action">
|
||||
<legend>Action buttons</legend>
|
||||
<p>
|
||||
<input type="submit" value="Input">
|
||||
<button type="submit">Button</button>
|
||||
<input type="reset" value="Reset">
|
||||
<input type="submit" value="Disabled" disabled>
|
||||
<input type="submit" value="<input type=submit>">
|
||||
<input type="button" value="<input type=button>">
|
||||
<input type="reset" value="<input type=reset>">
|
||||
<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>
|
||||
</fieldset>
|
||||
<p><a href="#top">[Top]</a></p>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "html5-test-page",
|
||||
"version": "0.6.1",
|
||||
"version": "0.7.1",
|
||||
"description": "A page filled with common HTML elements to be used for testing purposes.",
|
||||
"main": "index.html",
|
||||
"scripts": {
|
||||
|
Reference in New Issue
Block a user