Chemistry 524 HTML Primer

Paragraphs <BR [CLEAR=ALL|LEFT|RIGHT]> Begin a new line under the startpoint of the current line. Use <BR CLEAR> to make the line start in the left or right margin, if you e.g. have a picture on the side of the text. Use CLEAR=ALL if you have pictures on both side of the text. CLEAR is not in the HTML standards. (IE NS) <NOBR> Stands for 'No BReak'. Use it if you want the text inside the tag to appears on the same line. Don't forget to end with </NOBR>. (IE NS) <WBR> Stands for 'word break'. Starts a new line if the browser need to. Use it, for example, inside a long word. <P [ALIGN=LEFT|RIGHT|CENTER|JUSTIFY]> Stands for 'paragraph'. Use it to start a new paragraph. Use ALIGN to start the line in the left, right or center part of the page. Justify makes straight margins. <P> can end with </P>, but it's optional. ALIGN=JUSTIFY is an Explorer extension. (IE) <CENTER> Use it to center text and pictures. Netscape tag, but well supported. Must end with </CENTER>. IE NS <DIV ALIGN="left|center|right"> Aligns text, pictures and other contents together. Should probably end with </DIV>. IE NS Rulers <HR [SIZE=n] [WIDTH=n|n%] [ALIGN=LEFT|RIGHT] [NOSHADE] [COLOR=color]> Use it to insert a horizontal line to separate text. The following tags can be used: SIZE=n Sets the height of the line in dots. Default is 1. WIDTH=n|n% Sets the width of the line, either in dots or in percent. Standard is 100%. IE NS ALIGN=LEFT|RIGHT|CENTER Sets the align of the line. IE NS NOSHADE Remove the 3D-look from the line. IE NS COLOR=color Defines the color of the line. IE