HTML
hypertext markup language
CSS / JAVA Links
1. An easier way to add css to your web pages is as follows.
2. Open a text editor [note pad] and add you CSS for your links, scrolls, tables... it should look something like this here.
3. Now once you add the CSS save it as css.css file.
4. Upload the css.css file to your FTP.
5. Add this link <LINK REL=stylesheet HREF="css.css" TYPE="text/css"> to your html, htm, php files that you want your CSS to show up at.
6. Now for a javacsript you do da same thing.
7. Take the java code and put it in Notepad should look like this here.
8. Save it as java.js and uplaod it to ur FTP.
9. Then add this link <script language="javascript" src="/java.js"></script> to your html, htm, php files that you want your javascript to show up at.
!!You do not need to include the <style type="text/css"><!-- or <script language="JavaScript1.2"> //--></script> parts of the codes when you edit it in notepad.
Transparent IFrames and Scrolls
1. In your Iframe code add this to it. [style="filter:chroma (color=#808080)"] see example here.
2. This code will ERASE all #808080 color items.
3. Now you must add, to all your html, php, htm files that you want to appear in that Iframe, a background color of #808080 <BODY BGCOLOR="808080">
4. The code will take out the background color #808080 thus makin it Trasnparent.
5. Do Not use the color #808080 with any thing else is in the IFRAME such as text or link colors because, It will not show.
6. Now to make your scroll bars transparent add the followin code.
<style type="text/css"><!-- body{scrollbar-track-color:#808080;
scrollbar-highlight-color:#808080;
scrollbar-3dlight-color:#FFFFFF;
scrollbar-darkshadow-color:#FFFFFF;
scrollbar-shadow-color:808080;
scrollbar-face-color:#808080;
scrollbar-arrow-color:#808080} //--></style>
CSS
1.Here is CSS codes all in one piece.
<style type="text/css"><!-- body{background:#808080;
{scrollbar-track-color:#808080;
scrollbar-highlight-color:#808080;
scrollbar-3dlight-color:#808080;
scrollbar-darkshadow-color:#808080;
scrollbar-shadow-color:808080;
scrollbar-face-color:#526C8F;
scrollbar-arrow-color:#526C8F}
a:link{font-family:arial;font-size:11px;color:#7F94B8;text-decoration:none;}
a:active{font-family:arial;font-size:11px;color:#7F94B8;text-decoration:none;}
a:visited{font-family:arial;font-size:11px;color:#7F94B8;text-decoration:none;}
a:hover{font-family:arial;font-size:11px;color:#95B9DD;text-decoration:overline underline;}
body, table, tr, td
{font-size:11px;
font-family:arial;
color:#FFFFFF;
text-align:left;}
b
{color:#A7BDDB}
i
{color:#888E98} //--></style>
Navi System
Here is a simple way to organize your navigation for your site. If you need more tables, just copy and paste the code 2 times, 3 times....
Code:
<table style="background:#202020;border:#000000 1px solid;align:left;font-family:arial;font-size:11px;color:#FFFFFF" cellpadding=0 width ="200">
<tr><td style="background:#404040;">
Navigation: <b>Bio</b>
</td></tr><tr><td>
<li><a href="">About-</a>
<li><a href="">Images-</a>
<li><a href="">Likes-</a>
<li><a href="">Hates-</a>
</tr></td></table><br><br>
<- Back