I Hate Forms... HTML5 CSS3 Help Me

Jax

Addicted
Joined
Jul 28, 2011
Messages
984
Reaction score
119
FP$
1,726
Hi Guys,

I have had it with damn forms I have one on my new website but I can't fro the life of me get it to work. Here is what I have coded. Tell me I am missing something...

Code:
<section id="contact">
  <div class="container">
    <h1>Contact</h1>
    <div class="block"></div>
    <form >
      <div class="row">
        <div class="six columns">
          <label for="Name">Name</label>
          <input name="Name" class="u-full-width" type="text">
        </div>
        <div class="six columns">
          <label for="Email">Email</label>
          <input name="E-Mail Address" class="u-full-width" type="email">
        </div>
      </div>
      <div class="row">
        <label for="Message">Message</label>
        <textarea name="Message" class="u-full-width"></textarea>
        <input class="button-primary" type="submit" value="Send">

    <input action="mailto:[email protected]" enctype="text/plain" type="hidden" name="body" />
      </div>
    </form>
  </div>
</section>

help me fix this... also the Doctype is HTML

Thanks awesome people 🙂
 
Hi Guys,

I have had it with damn forms I have one on my new website but I can't fro the life of me get it to work. Here is what I have coded. Tell me I am missing something...

Code:
<section id="contact">
  <div class="container">
    <h1>Contact</h1>
    <div class="block"></div>
    <form >
      <div class="row">
        <div class="six columns">
          <label for="Name">Name</label>
          <input name="Name" class="u-full-width" type="text">
        </div>
        <div class="six columns">
          <label for="Email">Email</label>
          <input name="E-Mail Address" class="u-full-width" type="email">
        </div>
      </div>
      <div class="row">
        <label for="Message">Message</label>
        <textarea name="Message" class="u-full-width"></textarea>
        <input class="button-primary" type="submit" value="Send">

    <input action="mailto:[email protected]" enctype="text/plain" type="hidden" name="body" />
      </div>
    </form>
  </div>
</section>

help me fix this... also the Doctype is HTML

Thanks awesome people 🙂

I don't know if this helps at all:

Code:
<form action="/my-handling-form-page" method="post">
   <div>
       <label for="name">Name:</label>
       <input type="text" id="name" name="user_name">
   </div>
   <div>
       <label for="mail">E-mail:</label>
       <input type="email" id="mail" name="user_mail">
   </div>
   <div>
       <label for="msg">Message:</label>
       <textarea id="msg" name="user_message"></textarea>
   </div>
</form>

Add this button code in it:

Code:
<div class="button">
  <button type="submit">Send your message</button>
</div>
 
  • Like
Reactions: Jax
Back
Top Bottom