Basic HTML Tags
Basic HTML Tags
HTML Tags Explained
In an HTML file instead of going to a menu to change a word so it becomes boldface, the user adds a tag (<b>) in front of the word and another (</B>) behind the word. For example, if you wanted to emphasize the word "help" by making it bold it would look like: <B>help</B>. You will notice HTML tags utilize the less than (<) and the greater than (>) symbols. In addition, the backslash (/) is used to "shutoff" the command. Since an HTML file uses tags you will not be able to see the actual formatting until you search and preview your online template.
Codes
Boldface-- <B>bold</B>
Italics-- <I>italics</I>
Break-- <BR> break (Starts text on the next line)
Indent Text-- <BLOCKQUOTE>To indent text use this tag.</BLOCKQUOTE>
Go to the Top
Lists
Bulleted List (Unordered List)
<UL>
<LI> List item 1
<LI> List item 2
<LI> List item 3
</UL>
The results:
List item 1
List item 2
List item 3
Numbered List (Ordered List)
<OL>
<LI> List item 1
<LI> List item 2
<LI> List item 3
</OL>
The results: 
1. List item 1
2. List item 2
3. List item 3
Go to the Top
Links
Link to a Web Page (Creating a hypertext)
<A HREF="add web site address">East Buchanan</A>
Example:
East Buchanan Community Schools
Link to an Email Address
<A HREF="MAILTO:add email address">Tech Team</A>
Example:
Tech Team
Go to the Top
Created by Jessa Schweitzer
East Buchanan Community School Tech Team
Return to the Webmaster Resources Page