HTML Template

<HTML>
<HEAD>
 <TITLE>Title Name</title>
 <BASE HREF=http://abc.com/ TARGET=>
 <LINK REL=STYLESHEET HREF= TYPE=text/css >
 <META HTTP-EQUIV=REFRESH CONTENT=5>
 <META NAME=KEYWORDS CONTENT='apples bananas carrots'>
 <STYLE TYPE="text/css">
  <!--
   H2 {color:green}
   H3 {color:blue}
  -->
 </style>
</head>
<BODY BGCOLOR=#FFFFFF BACKGROUND=marbel.jpg ALINK= LINK= VLINK= TEXT= >
<H1>This is the biggest Heading</h1>
Special characters
" &#34; &quot;
& &#38; &amp;
< &#60; &lt;
> &#62; &gt;
  &#160; &nbsp;
¢ &#162; &cent;
§ &#167; &sect;
© &#169; &copy;
® &#174; &reg;
° &#176; &deg;
± &#177; &plusmn;
² &#178; &sup2;
³ &#179; &sup3;
³ &#179; &sup3;
µ &#181; &micro;
¶ &#182; &para;
¼ &#188; &frac14;
½ &#189; &frac12;
× &#215; &times;
÷ &#247; &divide;
† &#8224; &dagger;
‡ &#8225; &Dagger;
• &#8226; &bull;
™ &#8482; &trade;

<A HREF= NAME= TARGET= > 
<IMG SRC= ALIGN= ALT= BORDER= HEIGHT= WIDTH= LOWSRC= SUPPRESS= >
<HR ALIGN= COLOR= NOSHADE SIZE= WIDTH= >
<DL>
 <DT>
 <DD>
</dl>

</body>
</html>

CSS Style Sheets

Example of CSS statement and use in HTML
div.box { border: solid; border-width: thin; width: 100% }
<div class="box">
The content within this DIV element will be enclosed
in a box with a thin line around it.
</div>


CSS Style Sheets

Example of CSS statement and use in HTML
div.box { border: solid; border-width: thin; width: 100% }
<div class="box">
The content within this DIV element will be enclosed
in a box with a thin line around it.
</div>

CSS Example 1

body {
        font: 8pt/16pt georgia;
        color: #555753;
        background: #fff url(blossoms.jpg) no-repeat bottom right;
        margin: 0px;
        }
p {
        font: 8pt/16pt georgia;
        margin-top: 0px;
        text-align: justify;
        }
h3 {
        font: italic normal 12pt georgia;
        letter-spacing: 1px;
        margin-bottom: 0px;
        color: #7D775C;
        }
a:link {
        font-weight: bold;
        text-decoration: none;
        color: #B7A5DF;
        }
a:visited {
        font-weight: bold;
        text-decoration: none;
        color: #D4CDDC;
        }
a:hover, a:active {
        text-decoration: underline;
        color: #9685BA;
        }

/* specific divs */
#container {
        background: url(zen-bg.jpg) no-repeat top left;
        padding: 0px 175px 0px 110px;
        margin: 0px;
        }

#intro {
        min-width: 470px;
        }
#pageHeader {
        margin-bottom: 20px;
        }

/* using an image to replace text in an h1.
 This trick courtesy Douglas Bowman,
 http://www.stopdesign.com/articles/css/replace-text/ */
#pageHeader h1 {
        background: transparent url(h1.gif) no-repeat top left;
        margin-top: 10px;
        width: 219px;
        height: 87px;
        float: left;
        }
#pageHeader h1 span {
        display:none
        }
#pageHeader h2 {
        background: transparent url(h2.gif) no-repeat top left;
        margin-top: 58px;
        margin-bottom: 40px;
        width: 200px;
        height: 18px;
        float: right;
        }
#pageHeader h2 span {
        display:none;
        }

#quickSummary {
        clear:both;
        margin: 20px 20px 20px 10px;
        width: 160px;
        float: left;
        }
#quickSummary p {
        font: italic 10pt/22pt georgia;
        text-align:center;
        }

#preamble {
        clear: right;
        padding: 0px 10px 0px 10px;
        }
#supportingText {
        padding-left: 10px;
        margin-bottom: 40px;
        }

#footer {
        text-align: center;
        }
#footer a:link, #footer a:visited {
        margin-right: 20px;
        }
#linkList {
        margin-left: 600px;
        position: absolute;
        top: 0px;
        right: 0px;
        }
#linkList2 {
        font: 10px verdana, sans-serif;
        background: transparent url(paper-bg.jpg) top left repeat-y;
        padding: 10px;
        margin-top: 150px;
        width: 130px;
        }
#linkList h3.select {
        background: transparent url(h3.gif) no-repeat top left;
        margin: 10px 0px 5px 0px;
        width: 97px;
        height: 16px;
        }
#linkList h3.select span {
        display:none
        }
#linkList h3.favorites {
        background: transparent url(h4.gif) no-repeat top left;
        margin: 25px 0px 5px 0px;
        width: 60px;
        height: 18px;
        }
#linkList h3.favorites span {
        display:none
        }
#linkList h3.archives {
        background: transparent url(h5.gif) no-repeat top left;
        margin: 25px 0px 5px 0px;
        width:57px;
        height: 14px;
        }
#linkList h3.archives span {
        display:none
        }
#linkList h3.resources {
        background: transparent url(h6.gif) no-repeat top left;
        margin: 25px 0px 5px 0px;
        width:63px;
        height: 10px;
        }
#linkList h3.resources span {
        display:none
        }

#linkList ul {
        margin: 0px;
        padding: 0px;
        }
#linkList li {
        line-height: 2.5ex;
        list-style-type: none;
        background: transparent url(cr1.gif) no-repeat top center;
        display: block;
        padding-top: 5px;
        margin-bottom: 5px;
        }
#linkList li a:link {
        color: #988F5E;
        }
#linkList li a:visited {
        color: #B3AE94;
        }

#extraDiv1 {
        background: transparent url(cr2.gif) top left no-repeat;
        position: absolute;
        top: 40px;
        right: 0px;
        width: 148px;
        height: 110px;
        }

Home | West Papua