DARK GREEN = HIDDEN TAGS
TO EXPLAIN HOW TO DO EACH LINE
A
Quick Note About Hidden Tags
<!-Hidden
Tags, are often used for self notes since hidden tags can be seen by the
webmaster editing the source code but is not viewable in the web browser
(basically these tags tell the browser to omit text between these tags->
<html>
<head>
<title>Basic Text Options in HTML</title>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#0000EE" vlink="#3333FF"
alink="#FF0000">
<!--this line is a trick you can use to use
self notes. Enclosed in these brackets it will not be viewable in the web
browser Notice you do not see it in the HTML browser-->
<br><!--LIKE THIS: <br> = break return
makes a new line-->
<br><!--And THIS: <br> = NON
BRAKING SPACE forces a space between lines-->
<p>You can Add Text Simply by typing
between the body tags in your HTML document
<!--Specify a text color-->
<p>You can specify a color <font color="#FF0000">RED TEXT</font>
<!--Make Bold text-->
<p><b><font color="#000000"><font size=+1>You can Make
Text BOLD</font></font></b>
<!--Make Italic text-->
<p><i><font color="#000000"><font size=+1>You can Make
Text Italic</font></font></i>
<!--Make Bold and Italic text-->
<p><b><i><font color="#000000"><font size=+1>You can
make Text bold and
Italic</font></font></i></b>
<!--Make BLINKING text-->
<p><blink><font color="#000000"><font size=+1>You can make
text Blink</font></font></blink>
<!--Make UNDERLINED TEXT-->
<p><u><font color="#000000"><font size=+1>You can make
text Underlined</font></font></u>
<!--Make TEXT WITH A LINE THROUGH IT (CALLED
STRIKE THROUGH)-->
<p><strike><font color="#000000"><font size=+1>You can
strike through text</font></font></strike>
<br>
<!--Make TEXT DIFFERENT SIZES-->
<p><font color="#000000"><font size=+1>You Can Change Text
Size (FONT SIZE 1)</font></font>
<p><font color="#000000"><font size=+4>You Can Change Text
Size (FONT SIZE 5)</font></font>
<p><font color="#000000"><font size=+4>You Can Change Text
Size (FONT SIZE 10)</font></font>
<br>
</body>
</html>
BACK