mirror of
https://github.com/cbracco/html5-test-page.git
synced 2025-08-21 13:21:56 +02:00
Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8baaacd77e | ||
|
76753ba02f | ||
|
cf00512063 | ||
|
527134b89a | ||
|
4f2ed28992 | ||
|
649dfac7ae | ||
|
033d46eb24 | ||
|
1c0f3d7367 | ||
|
3a86d42023 | ||
|
12dfea9c4f |
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,3 +1,15 @@
|
||||
# 0.3.1 (August 17, 2015)
|
||||
|
||||
- Change placeholder image dimensions to one that works properly (thanks @haroenv!).
|
||||
|
||||
# 0.3.0 (August 17, 2015)
|
||||
|
||||
- Add phone number input field (thanks @johnpolacek!).
|
||||
|
||||
# 0.2.2 (May 13, 2015)
|
||||
|
||||
- Fix validation errors.
|
||||
|
||||
# 0.2.1 (March 21, 2015)
|
||||
|
||||
- Fix duplicate IDs and formatting.
|
||||
|
12
test.html
12
test.html
@@ -274,7 +274,7 @@ p q r s t u v w x y z { | } ~ </pre>
|
||||
<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">
|
||||
<img src="http://placekitten.com/420/420" alt="Image alt text">
|
||||
<figcaption>Here is a caption for this image.</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
@@ -313,7 +313,7 @@ p q r s t u v w x y z { | } ~ </pre>
|
||||
|
||||
<article id="embedded__iframes">
|
||||
<header><h2>IFrames</h2></header>
|
||||
<div><iframe src="http://www.google.com" width="100%" height="300" frameborder="0"></iframe></div>
|
||||
<div><iframe src="http://www.google.com" height="300"></iframe></div>
|
||||
<footer><p><a href="#top">[Top]</a></p></footer>
|
||||
</article>
|
||||
</section>
|
||||
@@ -321,7 +321,7 @@ p q r s t u v w x y z { | } ~ </pre>
|
||||
<section id="forms">
|
||||
<header><h1>Form elements</h1></header>
|
||||
|
||||
<form action="">
|
||||
<form>
|
||||
<fieldset id="forms__text">
|
||||
<legend>Text fields</legend>
|
||||
|
||||
@@ -341,13 +341,17 @@ p q r s t u v w x y z { | } ~ </pre>
|
||||
<label for="input__emailaddress">Email Address</label>
|
||||
<input id="input__emailaddress" type="email" placeholder="name@email.com">
|
||||
</p>
|
||||
<p>
|
||||
<label for="input__phone">Phone Number</label>
|
||||
<input id="input__phone" type="tel" placeholder="(999) 999-9999">
|
||||
</p>
|
||||
<p>
|
||||
<label for="input__search">Search</label>
|
||||
<input id="input__search" type="search" placeholder="Enter Search Term">
|
||||
</p>
|
||||
<p>
|
||||
<label for="input__text2">Number Input <abbr title="Required">*</abbr></label>
|
||||
<input id="input__text2" type="number" placeholder="Enter a Number" pattern="[0-9]*">
|
||||
<input id="input__text2" type="number" placeholder="Enter a Number">
|
||||
</p>
|
||||
<p>
|
||||
<label for="input__textarea">Textarea</label>
|
||||
|
Reference in New Issue
Block a user