Digg it UP
#1 in Business Subscribe Email Print

You are here: Home > Internet and Businesses Online > Web Design > HTML Forms -- Back to the Basics and Beyond -- Part Three -- Form Tips & Tricks

Tags

  • series
  • necessary
  • describe
  • create input
  • disaster situation
  • create input

  • Links

  • New York Casinos
  • Three Types Of Commercial Tanning Beds
  • Do-It-Yourself Credit Check-Up!
  • Digg it UP - HTML Forms -- Back to the Basics and Beyond -- Part Three -- Form Tips & Tricks

    Small Business Marketing Strategy - A Blink Lesson #4
    This is Article four of six in a series of lessons for small business marketers from Malcolm Gladwell’s Blink.Here in Chapter Four of Blink Gladwell uses the lessons of a seasoned, brilliant Marine Corps officer and an improv troupe to prove a key component of spontaneity: practice.To quote page 114: “How good people's decisions are under the fast-moving, high-stress conditions of rapid cognition is a function of training and rules and rehearsal.” Then further, on page 119: “…allowing people to operate without having to explain themselves constantly turns out to be the rule in improve. It enables rapid cognition.”The lesson small business owners can take away from this chapter is clear. Train, practice, and let your people “in the field” make decisions based on what their training has prepared them for.The “Big Victory” is that of a seasoned expert, Paul Van Riper, over a larger team armed with computers and data and, in essence, a much bigger budget. But isn't this what you go up against all the time as a small busines
    < /FORM

    Disappearing Form Text

    You can display default text within your text input boxes that magically disappears when you click inside the box. This will enable you to provide your visitors with an example of text they should place within your text box.

    < INPUT type="text" name="url" value="http://www.yourdomain.com" size="30" onfocus="value=''" >

    Change the "value="http://www.yourdomain.com" text to the default text you would like to be displayed within your text box

    Once Upon a Time
    So there you are at a social or business event. You are in line for appetizers (bet you can’t wait to get to those spicy wings) and you strike up a conversation with the person next to you in line. You introduce yourselves, shake hands, and quickly the question, “What do you do for a living” is asked.” It’s the moment of truth!Ordinarily one’s response is a generic, dull, uninspired, noun stating, “what you are” instead of “what you do.” It is as if one were to say, “I sell a commodity” or even worse, “I AM a commodity.” Once that commodity statement is finished, the response is typically a tepid “uh huh” accompanied with glazed-over eyes. That’s not the response you want is it?If you want to attract business, your tactic should be to engage the person you are speaking with so you can impress them with the benefits of being your client. In order to impress, you have to describe your product or services in terms the listener can relate to and to make them understand what makes you stand out from your competition.Imagine if a banker sai
    In part one of this series we focused on setting up a basic form on your website. We discussed the Form Element Attributes and began the Form Element Properties.

    In part two of this series, we continued with the Form Element Properties and moved on to some more advanced form options.

    In part three of this series we will focus on some great tips and tricks you can use to spice up your forms.

    If you missed part one, you can find it here: http://www.web-source.net/html_forms1.htm

    If you missed part two, you can find it here: http://www.web-source.net/html_forms2.htm

    Form Tips and Tricks

    Now that you have a basic understanding of forms and how you can place them within your website, we'll now focus on a few "tips & tricks" you can use to spice up your forms.

    Creating A Default Form Option

    The OPTION tag is used to create options listed in a drop down box of a form. You can select a default option, by adding the word "selected" within your OPTION tag.

    < SELECT >
    < OPTION >option 1
    < OPTION SELECTED >option 2
    < OPTION >option 3
    < OPTION >option 4
    < OPTION >option 5
    < OPTION >option 6
    < /SELECT >

    Customizing Your Input Boxes

    You can specify the size of your INPUT box by changing the SIZE value. In addition, you can change the amount of text input by changing the MAXLENGTH value. When specifying the MAXLENGTH value, make sure you provide your visitors with enough space to type in the necessary information.

    < INPUT type="text" SIZE="10" MAXLENGTH="40" >

    Adding Color to Your Input Boxes (IE)

    The INPUT tag is used to create input fields within a web page form. You can change the font, input text color, input text size and the background color of your INPUT box by using STYLE tags.

    < FORM >
    < INPUT type="text" STYLE="color: #FFFFFF; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72A4D2;" size="10" maxlength="30" >
    < /FORM

    Disappearing Form Text

    You can display default text within your text input boxes that magically disappears when you click inside the box. This will enable you to provide your visitors with an example of text they should place within your text box.

    < INPUT type="text" name="url" value="http://www.yourdomain.com" size="30" onfocus="value=''" >

    Change the "value="http://www.yourdomain.com" text to the default text you would like to be displayed within your text box

    eBay is the Greatest Opportunity YOU Have to Create a Career Online
    eBay's being spoken about everywhere these days. At work, school, down the pub... everyone's getting into eBay, looking for those bargains and trying to save themselves some money. Not a day goes by without eBay getting some kind of press publicity.Although people are increasingly turning to eBay for bargains, the majority of users are only buying and do not open a selling account. Lets be honest, I expect you've used eBay in the past and I'm sure if your reading this that you've even sold items on it. It's not hard is it?There are three specific reasons why I believe eBay is the greatest opportunity online to make extra cash or even build up your sales to make a full time online career.Everyone's Equal.On eBay everyone's equal. All users no matter what your status, bank balance or feedback is - everyone gets exactly the same opportunity to sell their item, starting with a blank description form.It's your call how you describe your item and it stands the same chance of being seen as the next persons. If your selling an ebook,

    If you missed part two, you can find it here: http://www.web-source.net/html_forms2.htm

    Form Tips and Tricks

    Now that you have a basic understanding of forms and how you can place them within your website, we'll now focus on a few "tips & tricks" you can use to spice up your forms.

    Creating A Default Form Option

    The OPTION tag is used to create options listed in a drop down box of a form. You can select a default option, by adding the word "selected" within your OPTION tag.

    < SELECT >
    < OPTION >option 1
    < OPTION SELECTED >option 2
    < OPTION >option 3
    < OPTION >option 4
    < OPTION >option 5
    < OPTION >option 6
    < /SELECT >

    Customizing Your Input Boxes

    You can specify the size of your INPUT box by changing the SIZE value. In addition, you can change the amount of text input by changing the MAXLENGTH value. When specifying the MAXLENGTH value, make sure you provide your visitors with enough space to type in the necessary information.

    < INPUT type="text" SIZE="10" MAXLENGTH="40" >

    Adding Color to Your Input Boxes (IE)

    The INPUT tag is used to create input fields within a web page form. You can change the font, input text color, input text size and the background color of your INPUT box by using STYLE tags.

    < FORM >
    < INPUT type="text" STYLE="color: #FFFFFF; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72A4D2;" size="10" maxlength="30" >
    < /FORM

    Disappearing Form Text

    You can display default text within your text input boxes that magically disappears when you click inside the box. This will enable you to provide your visitors with an example of text they should place within your text box.

    < INPUT type="text" name="url" value="http://www.yourdomain.com" size="30" onfocus="value=''" >

    Change the "value="http://www.yourdomain.com" text to the default text you would like to be displayed within your text box

    Emergency Traffic Signals
    When disaster strikes, Horizon signal is there providing emergency traffic signals and promoting traffic safety. The portability of our equipment is a crucial aspect in disaster management. Being able to quickly deploy traffic control equipment is essential in a disaster situation. Horizon Signal offers products to control all traffic situations, protect property and save lives. Our product line includes portable traffic signals, portable traffic lights, traffic light control systems and flagging traffic control alternatives.Our primary focus is on convenience, work zone safety, and endurance in a disaster zone. When there is a disaster situation, you can count on the high visibility and the performance of our digital traffic control and traffic engineering devices. We offer a choice of emergency traffic signals.The SQ2 Portable Traffic Control System is one of the best portable traffic and emergency traffic signals because of its ease of transportation and installation at disaster zones. The optional trailer for storage and transportation
    PTION tag.

    < SELECT >
    < OPTION >option 1
    < OPTION SELECTED >option 2
    < OPTION >option 3
    < OPTION >option 4
    < OPTION >option 5
    < OPTION >option 6
    < /SELECT >

    Customizing Your Input Boxes

    You can specify the size of your INPUT box by changing the SIZE value. In addition, you can change the amount of text input by changing the MAXLENGTH value. When specifying the MAXLENGTH value, make sure you provide your visitors with enough space to type in the necessary information.

    < INPUT type="text" SIZE="10" MAXLENGTH="40" >

    Adding Color to Your Input Boxes (IE)

    The INPUT tag is used to create input fields within a web page form. You can change the font, input text color, input text size and the background color of your INPUT box by using STYLE tags.

    < FORM >
    < INPUT type="text" STYLE="color: #FFFFFF; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72A4D2;" size="10" maxlength="30" >
    < /FORM

    Disappearing Form Text

    You can display default text within your text input boxes that magically disappears when you click inside the box. This will enable you to provide your visitors with an example of text they should place within your text box.

    < INPUT type="text" name="url" value="http://www.yourdomain.com" size="30" onfocus="value=''" >

    Change the "value="http://www.yourdomain.com" text to the default text you would like to be displayed within your text box

    Factoring Financing: How to Grow Your Business Without Debt or Loans
    What is invoice factoring?Accounts receivable financing, also known as invoice factoring, is a powerful financial tool that has fueled the growth and success of a number of companies. Factoring enables companies to capitalize on their unpaid receivables by selling them to a factoring company for immediate payment. With factoring, companies immediately get paid for their invoiced work from the factoring finance company, while the factoring company waits to be paid by the customers. Factoring strengthens a business’ cash position by shortening the time to get invoices paid to 48 hours and providing the needed funds to meet current expenses and target new opportunities.Invoice Factoring BenefitsAs opposed to loans and lines of credit that require that the client have tangible assets and strong financials, factoring relies more heavily on the financial strength of the clients’ customer. This is a critical feature, since many new and small businesses do not meet the financial criteria of traditional lending institutions. However, m
    e necessary information.

    < INPUT type="text" SIZE="10" MAXLENGTH="40" >

    Adding Color to Your Input Boxes (IE)

    The INPUT tag is used to create input fields within a web page form. You can change the font, input text color, input text size and the background color of your INPUT box by using STYLE tags.

    < FORM >
    < INPUT type="text" STYLE="color: #FFFFFF; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72A4D2;" size="10" maxlength="30" >
    < /FORM

    Disappearing Form Text

    You can display default text within your text input boxes that magically disappears when you click inside the box. This will enable you to provide your visitors with an example of text they should place within your text box.

    < INPUT type="text" name="url" value="http://www.yourdomain.com" size="30" onfocus="value=''" >

    Change the "value="http://www.yourdomain.com" text to the default text you would like to be displayed within your text box

    3 Necessary Steps You Should Take When You Build Content Powerhouse Rich Websites
    One of the hottest topics on marketing forums is" how hard it is to make money with AdSense". The reason why it's hard to make money with adsense is that google reward unique and quality content and penalized duplicate content. HyperVRE could be a solution for this problem. HyperVRE creates multiple content websites on the fly, embedding your contextual ads and AdSense ads within the content. The only thing you must do is feed HypreVre with quality and unique content. To get Your started with HyperVre this article provide some information about how to write and publish your article.1. Keyword SelectionThe first step to build content rich pages is keyword selection. Choose the right keyword and write an article around that keyword. Try to make the content where you put that keyword in unique and give it some quality," value for the readers". i.e. How to ... or tips articles. To find the best keyword you have to do some keyword research by comparing demand, supply and keyword bids. A help full keyword research tool is Keyword Elite. With Keyword E
    < /FORM

    Disappearing Form Text

    You can display default text within your text input boxes that magically disappears when you click inside the box. This will enable you to provide your visitors with an example of text they should place within your text box.

    < INPUT type="text" name="url" value="http://www.yourdomain.com" size="30" onfocus="value=''" >

    Change the "value="http://www.yourdomain.com" text to the default text you would like to be displayed within your text box.

    Flashing Cursor in Form on Load

    You can set up your forms so that when the page loads your visitor's cursor will be flashing within your text box.

    Place the following code witin your < BODY > tag. This code tells the browser to place the cursor within the "customer" form in the "email" text box.

    < body onLoad="focus();customer.email.focus()" >

    The "customer" text represents the name of your form. The name attribute should be added to your form like this:

    < form name="customer" >

    You can change the name to whatever you'd like. However, make sure you also change it within your < BODY > tag as well. They must be the same.

    The "email" text represents the name of your form element. The < input > attribute should be written like this:

    < input type="text" name="email" >

    You can change the "email" name to whatever you'd like. However, make sure you also change it within your < BODY > tag as well. They must be the same.

    Tabbing Through Forms

    You can enable your visitors to tab through your form fields simply by adding "tabindex" to your INPUT tags.

    < FORM METHOD=post ACTION="/cgi-bin/example.cgi" >
    < INPUT type="text" name="name" size="20" maxlength="30" tabindex="1" >
    < INPUT type="text" name="address" size="20" maxlength="30" tabindex="2" >
    < INPUT type="text" name="email" size="20" maxlength="30" tabindex="3" >
    < INPUT type="text" name="url" size="20" maxlength="30" tabindex="4" >
    < INPUT type="Submit" VALUE="Submit" >
    < /FORM >

    The "tabindex" value determines the order in which you will tab through the text boxes. If you would like the tab order to skip a certain area, such as check boxes and radio buttons, simply use a negative value beginning with "-1" then "-2" and so on. Each negative value will be bypassed when tabbing through your form.

    Customizing Form Colors

    You can completely customize the look of your forms simply by using STYLE tags.<

    HTTP = HTML link (for blogs, profiles,phorums):
    <a href="http://www.diggitup.net/article/85617/diggitup-HTML-Forms--Back-to-the-Basics-and-Beyond--Part-Three--Form-Tips---Tricks.html">HTML Forms -- Back to the Basics and Beyond -- Part Three -- Form Tips & Tricks</a>

    BB link (for phorums):
    [url=http://www.diggitup.net/article/85617/diggitup-HTML-Forms--Back-to-the-Basics-and-Beyond--Part-Three--Form-Tips---Tricks.html]HTML Forms -- Back to the Basics and Beyond -- Part Three -- Form Tips & Tricks[/url]

    Related Articles:

    Cheap Metal Detectors

    Delegate Successfully - The Four Level Rule

    Starting a Home Internet Business - A Complete Dummies Guide Part 1

    Bookmark it: del.icio.us digg.com reddit.com netvouz.com google.com yahoo.com technorati.com furl.net bloglines.com socialdust.com ma.gnolia.com newsvine.com slashdot.org simpy.com shadows.com blinklist.com

    okna drewniane producent loans kredyt hipoteczny na dom Kaine grance oczyszczalnia przydomowa