
HTML is used to create webpages that can include text, graphics, video, audio, or special characters such as mathematical symbols.
In the HTML Mode of the built-in HTML Editor, you can markup content using HTML. The information below offers a basic overview of HTML tags and their functions. (Many HTML resources are available online if you wish to learn more.)
If you aren't familiar with HTML, you can use the Design Mode of the HTML Editor to create and format content. See HTML Editor: Basic for information.
Tag |
Description |
Example |
What it looks like online |
|---|---|---|---|
<i></i> |
Italicizes text |
This is <i>italic</i> text. |
This is italic text. |
<b></b> |
Bolds text |
This text is <b>bold</b>. |
This text is bold. |
<u></u> |
Underlines text |
This text is <u>underlined |
This text is underlined. |
<sub> </sub> |
Text is subscripted |
H<sub>2</sub>O |
H2O |
<sup> </sup> |
Text is superscripted |
x<sup>2</sup> |
x2 |
<br> |
Inserts a line break |
The quick <br> |
The quick |
<hr> |
Inserts a horizontal line |
Here is a horizontal line: |
Here is a horizontal line: |
Tag |
Description |
Example |
What it looks like online |
|---|---|---|---|
<a href= |
Format text as a hyperlink, linking to an outside web page |
Visit <a href= |
Click here to open the OSU web page |
<a href= |
Format text as a hyperlink, linking to a section on a web page. Uses an anchor to link to the section. |
<a href= |
(same as above) |
<a name= |
Creates an anchor, used with the <a href> tag. |
<a name="syllabus"> |
Syllabus (Anchors do not change the way information is displayed) |
<a href= |
Creates a link to send an email to someone |
Email<a href= |
Click here to send me mail! |
<embed src="URL"> |
Inserts an object (like a video clip) into a page |
<embed src= |
Multimedia clip would be shown (doesn't translate well into paper format) |
<img src= |
Inserts a graphic. Graphic can be on the current site or from a separate site (may need to look at source code) |
<img src="information.gif"> |
|
<img src= |
Displays text if the image can not be displayed, also presents pop-up box with text if picture is displayed |
<img src ="information.gif" |
Code |
Description |
What it looks like online |
|---|---|---|
< |
Less than |
< |
| > | Greater than | < |
| & | Ampersand | & |
| " | Quote | " |
| © | Copyright | © |
| | Non-breaking space | Allows you to put in more than one space at a time |