Update of /cvsroot/thyapi/thyapi/tutorial
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26802/tutorial
Added Files:
tutorial.css tutorial.html
Log Message:
Commiting file additions and modification from SVN revision 1945 to 1946...
Changes made by vinicius on 2005-09-15 07:05:20 +0200 (Thu, 15 Sep 2005) corresponding to SVN revision 1946 with message:
Init the initial version of the tutorial
--- NEW FILE: tutorial.css ---
body
{
margin: 0px;
font-family: Gill, Helvetica, sans-serif;
font-size: small;
}
#sidemenu
{
background-color: #c9d8eb;
width: 160px;
text-align: center;
font-weight: bold;
vertical-align: top;
padding-top: 15px;
padding-bottom: 15px;
}
#sidemenu_options
{
width: 130px;
margin: 15px;
text-align: left;
font-size: small;
}
#contents
{
vertical-align: top;
padding: 15px;
}
a
{
text-decoration: none;
color: black;
}
a:hover
{
color: gray;
}
--- NEW FILE: tutorial.html ---
<HTML>
<HEAD>
<TITLE>ThyAPI Tutorial</TITLE>
<style type="text/css" title="currentStyle" media="screen">
@import "tutorial.css";
</style>
</HEAD>
<BODY>
<table border="0px" cellspacing="0px" cellpadding="0px">
<tr>
<!-- Begin Main menu -->
<td id="sidemenu">
<a href="tutorial.html"><img src="../thybase/logothyapi.png" alt="ThyAPI Tutorial" TITLE="ThyAPI Tutorial" border="0">
<br><br>ThyAPI Tutorial</a>
<div id="sidemenu_options">
<a href="#">Option 1</a><br>
<a href="#">Option 2</a><br>
<a href="#">Option 3</a>
</div>
</td>
<!-- End Main menu -->
<!-- Begin Content -->
<td id="contents">
<h1> Test H1 Tag </h1>
<h2> Test H2 Tag </h2>
<h3> Test H3 Tag </h3>
<h4> Test H4 Tag </h4>
<h5> Test H5 Tag </h5>
<h1> Test H1 Tag </h1>
<h2> Test H2 Tag </h2>
<h3> Test H3 Tag </h3>
<h4> Test H4 Tag </h4>
<h5> Test H5 Tag </h5>
<h1> Test H1 Tag </h1>
<h2> Test H2 Tag </h2>
<h3> Test H3 Tag </h3>
<h4> Test H4 Tag </h4>
<h5> Test H5 Tag </h5>
<h1> Test H1 Tag </h1>
<h2> Test H2 Tag </h2>
<h3> Test H3 Tag </h3>
<h4> Test H4 Tag </h4>
<h5> Test H5 Tag </h5>
</td>
<!-- End Content -->
</tr>
</table>
</BODY>
</HTML>
|