This document is intended to give an introduction to simple HTML as might be used in a blog, bulletin board comment, or other such web form-based posting system.
background
HTML is the language of the World Wide Web. Whenever you visit a web site, the web server responds to your request with some sort of HTML document. It sends the document to your computer and the document is interpreted by your web browser.
HTML stands for Hyper Text Markup Language. Hyper Text refers to documents with text information that contains links to other documents. A Markup Language is a simple computer language that uses "tags" to represent information.
This document will give you an introduction to writing simple HTML that can be included in web message boards, web logs/journals, and other existing form-based web posting systems. This document is not intended to be a comprehensive guide to HTML or tell you how to write a web page from scratch. It is simply a quick reference to common tags.
text formatting
Similar to a word processor, HTML has several different types of text formatting, such as bold, italics, underline, and strikethrough. To make your text appear in these styles, use the following HTML:
<b>this text will appear bold.</b>
<i>this text will appear italic.</i>
<u>this text will appear underlined.</u>
The HTML above will look this way when rendered by a browser:
this text will appear bold. this text will appear italic. this text will appear underlined.
links
To create a hyperlink, use the following format:
<a href="Address">Link Text</a>
Where Address is either a URL, such as "http://www.clemson.edu/", or a directory or file on the server, such as "/gallery/albums.php". Link Text is the text that will appear as a hyperlink in your document. Examples:
To insert an image in an HTML document, use the following format:
<img src="Address">
Where Address is either a URL, such as "http://www.clemson.edu/homepage/wordmark.jpg", or a directory or file on the server, such as "/layout/CSCC-orangewhite/images/cscc_logo.png". Examples: