Text
Text Size
DescriptionCSS (Cascading style sheets) is a simple way to customize your webpage without having to retype all those simple codes all over again. It can be embedded or linked into your html document, and goes into the <head></head> of your html document.

Instead of the <font size="1"> html tag, you can simply put a body {font-size:8px;} which makes all the text in the body 8px (which is the 1 size in html.)
Code
<html>
<head>

<style type="text/css">
body { font-size:28px; }
</style>

</head>

<body>

TEXT

</body>
Output
TEXT
Practice
Text Link Color
DescriptionA CSS script that lets you change the colours of your links for tables and for text. Again, please note that the CSS scripts go in the <head></head> section of the html document
Code
<STYLE TYPE="text/css">
<!--
a:link { color: red; }
a:visited { color: red; }
a:hover { color: red; }
a:active { color: red; }
td#footer a:link {color: white;}
td#footer a:visited {color: white;}
td#footer a:hover {color: white;}
td#footer a:active {color: white;}
-->
</STYLE>

<a href="http://www.activejump.com">
Cats say Meow
</a>
Output
n/a.
Practice
Advertisements