Support Adobe Support DVDs Notebook Tutorials Software Technology Help DVDs Computer Training Assistance Graphics Education Training Design Software Tutorials Technology Guidance
Office Software - Excel Software - Microsoft Software - QuickBooks Software - Visual Software - Comptuer Software - Web Software - Sharepoint Software - Photoshop Software - Mac Software - QuarkXPress Software - management Software - Project Software - Learn Software - email Software - Network Software - Linux Software - Unix Software - Work Software - Net Software - ASP Software - PHP Software - HTML Software - CMS Software - XML Software - Mobile Software -
Training PC Tutorials Help Technology Assistance Help Technology DVDs DVDs Workstation Software Education Business Lessons Help Computers Tutoring Tutorials Computers Education

tips and Sample of HTML and CSS samples

REMOVE UNDERLINE FORM LINK
< A HREF="http://www.yourdomain.com" STYLE="TEXT-DECORATION: NONE">Your Link</A>

Highlite text on mouse over
< style type="text/css">
< !--
A:link {text-decoration: none;}
A:visited {text-decoration: none;}
A:hover {color: ff0033;}
-->
< /style>

No Right Click
< script language="JavaScript">
< !--
var message="No right click."; // Put your message for the alert box between the quotes.
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;}}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;}}}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);}
document.onmousedown=click;
// -->
< /script>

BOLD on Mouse OVER
< style><!--a:hover{font-weight:bold; }--></style>

CHANGE SCROLLBAR COLOR
< style>
< !--
BODY{
scrollbar-face-color:#0000FF;
scrollbar-arrow-color:black;
scrollbar-track-color:#EEEEEE;
scrollbar-shadow-color:'';
scrollbar-highlight-color:'';
scrollbar-3dlight-color:'';
scrollbar-darkshadow-Color:''; }
-->
< /style>