Windows NT 4.0 source code leak
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

<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
&lt;P&gt; in HTML.
<H1>This is a Heading 1 style, which is named &lt;H1&gt; in HTML.</H1>
<H2>This is a Heading 2 style, which is named &lt;H2&gt; in HTML.</H2>
<H3>This is a Heading 3 style, which is named &lt;H3&gt; in HTML.</H3>
<H4>This is a Heading 4 style, which is named &lt;H4&gt; in HTML.</H4>
<H5>This is a Heading 5 style, which is named &lt;H5&gt; in HTML.</H5>
<P>
The style that can be used to separate parts of a document is
the Horizontal Rule, which is named &lt;HR&gt; in HTML. It looks like this:
<HR>
<P>
Lists are formatted by using the &lt;UL&gt; style for unordered lists and the &lt;OL&gt; style for ordered (numbered) lists.
<P>
The &lt;UL&gt; style:
<UL>
<LI>Item one
<LI>Item two
<LI>Item three
</UL>
<P>
The &lt;OL&gt; 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 &lt;EM&gt; in HTML. It is used to apply an
<EM>italic</EM> style to characters.
<P>
The Strong style, which is named &lt;STRONG&gt; in HTML. It is used to apply
a <STRONG>bold</STRONG> style to characters.
<P>
The Underline style, which is named &lt;U&gt; in HTML. It is used to apply an
<U>underline</U> style to characters.
<P>
The StrikeThrough style, which is named &lt;STRIKE&gt; in HTML. It is used to
apply a <STRIKE>strike through</STRIKE> style to characters.
<P>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>