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.
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.