Editing Your Free Calculator Form

You can modify the look and feel of any of the calculators you copy from this site, provided you don't alter the links or link text and otherwise agree to the RESTRICTIONS terms in the column at the right.

There are two good ways to format the calculator forms -- using tables, or using style sheets. Each approach is described quite briefly below:

Using Tables

A table lets you control the calculator's width, border, and backgroud color. (You can also control text size and font with one added HTML tag which we'll cover shortly.) Just paste the unformatted version of the calculator form onto your web page, and wrap it in a simple HTML table. Here is one typical example:

<table width="300" border="1" bordercolor="#cc3366" bgcolor="#ff9999" cellpadding="10" cellspacing="0" align="center">
<tr>
<td>
  [your calculator goes here]
</td>
</tr>
</table>

[your calculator goes here]

Note the effect of the simple commands in the <table> tag which let you can control the appearance of your calculator:

To control the appearance of the text of your calculator in a table, use the <font> tag right around your calculator (inside the <td> tag in the table). Here's an example:

<td>
<font face="courier, serif" color="#333399"
[your calculator goes here]
</font>
</td>

results in:
[your calculator goes here]

Finally, to align your calculator inside the table, add a command inside the <td> tag; for example:

<td align="center">

centers your calculator like this:
[your calculator goes here]

Using Style Sheets

Style sheets are another way to format HTML, different than using tables. Generally style sheets are for people more familiar with HTML, so we won't try to offer a style sheet tutorial here. We will advise that if you want to use style sheets that you start with one of the formatted calculator versions and then modify the existing style sheet commands that we start you with.

SITE CATEGORIES
• Home
• Arts And Media Calculators
• Business And Finance Calculators
• Computers And Technology Calculators
• Education Resources
• General Reference Tools
• Health And Medical Calculators
• Houses Home And Family Calculators
• Legal Resources
• News Search
• People And Society Calculators
• Recreation Calculators
• Shopping Calculators
RESTRICTIONS
Use of this calculator implies your agreement to the following:
  1. You agree not to modify any links or link text.
  2. You agree to stop using the calculator if requested by the owners of free-online-calculator.com.
  3. You agree that this calculator and all other portions of this web site are used at your own risk.
INSTRUCTIONS
  1. Decide:: Pick the calculator version that will look best in your web page.
  2. Select the HTML: Windows users can click in the box holding the version they want and press Ctrl-A, or use a mouse (remember to scroll if necessary to select ALL of the HTML)
  3. Copy the Selected HTML: Windows users can press Ctrl-C, or use their browser's Edit/Copy menu item.
  4. Paste the Copied HTML: Use your normal web page editor or text editor to paste the HTML you copied into your web page.
  5. To modify the calculator's appearance (colors, sizes, borders, etc.), just edit the lines shown in the style=\"...\" tags in the HTML you copy into your web page, as described here. (Note that you may not modify the calculator's links or link text.)