|
HTML
HTML References > Codes
Bold, Underline, Italic, Strikeout
Font Size, Color, Face
face="Small Fonts" means the current font that it's using is Small Fonts
Tables
valign is the vertical align, top-bottom-middle
Links
target="_blank" refers to which window or frame the link will be used in, _blank means to open a new window
Images
src="dog.gif" is the location of the source of the image
alt="Look! This is my dog!" this is the alternative text, if a mouse is pointed at this object for more than 2 seconds, a small label will appear with this text, if the alt="" code is not present, it will show no label.
Body Tag Attributes
bgcolor="000000" defines the color of the background
background="backgroundpicture.jpg" is the location of the source of the image for the background to use
link="ffffff" is the link color, the color of all your links (link : <a href="asdf.shtmll>)
alink="ffffff" is the active link color, the color of your links when it is clicked (link : <a href="asdf.shtmll>)
vlink="ffffff" is the visitied link color, the color of your links when it has already been clicked (link : <a href="asdf.shtmll>)
Head Tag Attributes
<title>My Homepage</title> "My Homepage" can be edited, this is the title of the window
Example HTML Page
</font></font> I placed two because I started two font codes (<font color="003366" face="Small Fonts" size="2"> and <font size="10">). Know that every HTML code MUST be ended with a / tag (e.g. </font>) unless it is a object itself, which does not have to be ended (e.g. <img src="dog.gif">).
|