<element-name>. An element's end tag is the same, but with a slash before the element name: </element-name>.<B> tag on would be bold.this is an example of <B>bold</B> text',<BR> tag at the appropriate place.line1<br>line2' looks like this:attribute=value.<FONT> on its own doesn't tell a thing. At least one attribute is required here, for example <FONT size=3>.</FONT size=3>" does not make any sense and will likely confuse lots of programs.<HtMl><tItLe>...", no problem. This program uses the following convention: element names are written in capitals (except for <br>), and attributes (names+contents) are written in small letters. This is to improve readability. Example: <BODY bgcolor="white" link="blue"><HTML> and ends with </HTML>. This is important, since these tags tell the browser to implement the file as an HTML document.<HEAD>, and ends with... </HEAD>, right. The HEAD element has no attributes.<HEAD>
<TITLE>This is an example!</TITLE>
</HEAD>
<BODY> and </BODY>. The most common BODY attributes are: bgcolor=c, which sets the document's background color; text=c, link=c and vlink=c, which set the color for text, links and visited links respectively. 'c' can be a color name or a color code. (Don't worry, TagWriter contains all available color names and an automatic color code generator.)"href=url", where url is the link's destination. A link ends with </A> and you can't use nested links (= links within links).<A href="../examples/sample1.html">Example 1</A>
<A href="mailto:some.address@somedomain.com?subject=Example">Mail me</A>
<A href="#contents">...</A> will bring you to the named object "contents" in the same file, and <A href="index.html#contents">...</A> will bring you to the named object "contents" in the file "index.html"."target" attribute to the tag. If the link is to be opened in the same frame, you can omit this attribute, but otherwise you need to use target="name", with "name" the frame's name, or "_parent", which means: the frame in which the frames are defined, or "_top", which means the window in which the document is shown.<IMG> tag. So to insert an image you must use this tag (= click the "Image" button in the "Objects & tags" palette). A necessary attribute of this tag is src=imageSrc, where imageSrc is the location of the image. A good idea is to put all your images in a separate directory, to facilitate bookkeeping a bit!width=n and height=n, with n in pixels. It is not necessary to include this information, but it will speed up rendering of your pages in a browser. And, try to avoid displaying images at a size larger than their original size, leave those techniques to Losedows webmasters.<TABLE> and ends with </TABLE>. The most common attributes you can add to the <TABLE> tag are: border=n, cellspacing=n and cellpadding=n (space between border and cell contents). n is size in pixels.<TR>. Attributes: align=left, center, right (horizontal alignment) and valign=top, middle, bottom (vertical alignment). It is not necessary to end with </TR>, but because of a bug in certain browsers it is recommended.<TD>. Attributes: see <TR>, and width=n or width=p%, where n is width in pixels and p is width in percentage of the total available space. If you don't specify width, the cell will have the width of the largest object in that column.</TD> as for </TR>.<TABLE border=2 cellspacing=2 cellpadding=3>
<TR align=left>
<TD width=60 bgcolor="#B0B0FF"><B>Cell 1</B></TD><TD>Cell 2</TD><TD width=50%>Cell 3</TD>
</TR>
<TR>
<TD bgcolor="#B0B0FF">Cell 2/1</TD><TD>Cell 2/2</TD><TD>Cell 2/3</TD>
</TR>
</TABLE>| Cell 1 | Cell 2 | Cell 3 |
| Cell 2/1 | Cell 2/2 | Cell 2/3 |
<FORM...>" and must end with "</FORM>". Two necessary attributes for the FORM tag are:<INPUT name=... type=...>. The basic types are: text (a simple text field), checkbox, radio and input or reset. The last two are the buttons which need to be clicked to send the form or to reset it to default. Another input object is the "textarea" which can contain multiple lines of text, written as <TEXTAREA name=... cols=x rows=y>Default text</TEXTAREA>.