PITI Calculator

FAQ, Which HTML Codes Are Supported?


All HTML Codes should be refered to as HTML tags. Tags is the correct term to use. All Tags begin with a lesser than sign (<) and end with a greater than sign (>). Tags are generally named after the first characters that follow the opening tag (the opening tag mark is the lesser than sign (<)). Tags may contain parameters. For an example, the IMG tag is in charge of displaying images into your web browser. The image tag always contains a 'src' attribute. You can see this in the example given below.


Inserting Images (IMG Tag) :

  < img src="http://www.website.com/myimage.jpg" />


You should replace the text "www.website.com/myimage.jpg" with the correct URL to the image you want displayed.

Forcing Enters, Wrapping to the next line (BR Tag):

  < br />


[+] Link to This Page