Blog
  • Twitter is having problems and hanging. Feed empty or you have no twitters in your account. Check back later.

  • How to Make HTML Forms for Your Website

    Your website visitors often want to contact you. For support, to inquire about a product, for link requests or even just to say hello. Many website owners just list their email address, so visitors can write to them. This way of posting contact details is very common, but it has a major drawback: spamers harvest websites searching for email addresses. Once your email gets into their list, you start receiving unwanted ads, various shady discount offers and even viruses. The safest way to allow your visitors to contact you is to include a web form on your website. Doing this is not that complicated, but it requires a certain degree of HTML knowledge and access to your website source. Below is a small HTML form that includes only 3 fields: Name, Email and Message.

    Name:
    Email:
    Message:

    This form uses “mailto” function to send the filled data to the specified email address. Let’s break this HTML form into pieces, line by line: 1.

    This line includes the beginning of the
    tag and the email address that will receive the message. The only thing you should modify is the email. 2. Name:
    This line contains the first field from your contact form: an edit box, “name”, that users will use to write their name and a label describing that field. You might also have noticed some properties of the edit box: size currently 10 and the maximum allowed length that is 40. “
    ” is the HTML tag for new line. 3. Email:
    Similar with the line above, it is an edit box for your visitor’s email address. This field is very important because you will use this information to contact your visitor. You can also modify the size and maxlength property of this edit box. 4. Message: This field will contain the message body. It’s not an edit box anymore, because we needed more space. This HTML field is named