PDA

View Full Version : HTML5 Outline Critique



Mase_00_7
06-16-2011, 06:51 AM
Hi guys,

Just putting the finishing touches to a new website for a Carpenter and before I go ahead and start styling I wanted you just check that my HTML5 outline looks ok. Got this from html5.org:

Frost Carpentry Bracknell

1. Main Site Navigation
2. Gallery Slideshow
3. Complete List of Carpentry Services

1. Bespoke Kitchen Fitting
2. All Aspects of Carpentry & Joinery
3. Extensions & Garage Conversions
4. Bracknell Carpenters on Facebook & Twitter

1. Find us on:
2. Latest news:

1. 20th June 2011
2. 12th June 2011
5. Where we work
6. Request a call back
7. Let's keep in touch


What do you think?

Edit, also how can I minify this form? Is there a way to combine the two forms? Basically I have two 1 line forms; one so the user can send a phone number and a seperate one to send an email address, with the user either requesting a call back or an email back.

<form action="php/contactPhone.php" method="post" name="contactPhone">
<fieldset>
<label for="phone" id="phone_label">Your Phone Number:</label>
<input type="text" class="fl" name="phone" id="phone" placeholder="ex. 01344 123 321" required>
<input type="image" class="formSubmit" src="img/contactButton.png" alt="Submit">
</fieldset>
</form>
<form action="php/contactEmail.php" method="post" name="contactEmail">
<fieldset>
<label for="email" id="email_label">Your Email Address:</label>
<input type="email" class="fl" name="email" id="email" placeholder="you@example.com" required>
<input type="image" class="formSubmit" src="img/contactButton.png" alt="Submit">
</fieldset>
</form>

Cheers, Paul.

kgun
06-16-2011, 09:50 PM
Just putting the finishing touches to a new website for a Carpenter and before I go ahead and start styling I wanted you just check that my HTML5 outline looks ok. Got this from html5.org:

Which authority do html5.org have? Isn't these

http://www.w3.org/TR/html5/

http://dev.w3.org/html5/spec/Overview.html

the authority?



Edit, also how can I minify this form? Is there a way to combine the two forms?

Why not try yourself?

deepsand
06-16-2011, 11:19 PM
HTLM5 is still very much a work in progress.

Per its lead editor, it is not expected to become a W3C Recommendation until 2022 or later.