mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.0 KiB
78 lines
2.0 KiB
<HTML>
|
|
|
|
<HEAD>
|
|
|
|
<TITLE>Very Basic HTML Styles</TITLE>
|
|
|
|
</HEAD>
|
|
<BODY BACKGROUND="/samples/images/backgrnd.gif" BGCOLOR="FFFFFF">
|
|
<TABLE>
|
|
<TR>
|
|
<TD><IMG SRC="/samples/images/SPACE.gif" ALIGN="top" ALT=" "></TD>
|
|
<TD><A HREF="/samples/IMAGES/html_mh.map"><IMG SRC="/SAMPLES/images/html_mh.gif" ismap BORDER=0 ALIGN="top" ALT=" "></A></TD>
|
|
</TR>
|
|
<tr>
|
|
<TD><IMG SRC="/samples/images/SPACE.gif" ALIGN="top" ALT=" "></TD>
|
|
<TD><HR>
|
|
<H1>Basic HTML Styles</H1>
|
|
<BODY>
|
|
<P>
|
|
This paragraph is in the Normal paragraph style, which is named
|
|
<P> in HTML.
|
|
<H1>This is a Heading 1 style, which is named <H1> in HTML.</H1>
|
|
|
|
<H2>This is a Heading 2 style, which is named <H2> in HTML.</H2>
|
|
|
|
<H3>This is a Heading 3 style, which is named <H3> in HTML.</H3>
|
|
|
|
<H4>This is a Heading 4 style, which is named <H4> in HTML.</H4>
|
|
|
|
<H5>This is a Heading 5 style, which is named <H5> in HTML.</H5>
|
|
|
|
|
|
<P>
|
|
The style that can be used to separate parts of a document is
|
|
the Horizontal Rule, which is named <HR> in HTML. It looks like this:
|
|
<HR>
|
|
|
|
<P>
|
|
Lists are formatted by using the <UL> style for unordered lists and the <OL> style for ordered (numbered) lists.
|
|
<P>
|
|
The <UL> style:
|
|
<UL>
|
|
<LI>Item one
|
|
<LI>Item two
|
|
<LI>Item three
|
|
</UL>
|
|
|
|
<P>
|
|
The <OL> style:
|
|
<OL>
|
|
<LI>Item one
|
|
<LI>Item two
|
|
<LI>Item three
|
|
</OL>
|
|
|
|
<P>
|
|
Modern browsers also support a small set of
|
|
character-formatting styles. The most common are the following:
|
|
<P>
|
|
The Emphasis style, which is named <EM> in HTML. It is used to apply an
|
|
<EM>italic</EM> style to characters.
|
|
<P>
|
|
The Strong style, which is named <STRONG> in HTML. It is used to apply
|
|
a <STRONG>bold</STRONG> style to characters.
|
|
<P>
|
|
The Underline style, which is named <U> in HTML. It is used to apply an
|
|
<U>underline</U> style to characters.
|
|
<P>
|
|
The StrikeThrough style, which is named <STRIKE> in HTML. It is used to
|
|
apply a <STRIKE>strike through</STRIKE> style to characters.
|
|
<P>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
</BODY>
|
|
|
|
</HTML>
|