SERVICES

CRYSTAL COMPUTER CONCEPTS

TAXES Fuzzy-Wuzzy device TECHNOLOGY

DELAWARE'S   ·      MIDDLETOWN  ·     ODESSA  ·    TOWNSEND AREA

This page is for some basic HTML with some Javescript thrown in.

The Javascript is exposed between the script tags primarily for familiarization purposes.

Area = Length x Width
for a rectangle

Area

Note: in this example the variables are Length and Width which also serve as literals.
<SCRIPT type="text/javascript">

var Length = 50;
var Width = 100;
var Area= Length*Width;
document.write("Length"+"  &#183;" +Length +"  " + "X"+
		"  &#183;" +  "Width" +"  &#183;" + Width);
document.write("<br /><br />" + "=" +"<br /><br />");
document.write(Area);

</SCRIPT>

Result- Code interpreted and executed:


DELAWARE'S MIDDLETOWN ODESSA AND TOWNSEND AREA

Valid XHTML 1.0 Transitional