|
HTML Primer
- Paragraph space
CODE:
Pacific Lutheran University is located in Tacoma, Washington.<p>Founded in 1890, the university has an enrollment of 3,684 students.
RESULT:
Pacific Lutheran University is located in Tacoma, Washington.Founded in 1890, the university has an enrollment of 3,684 students.
- Line break
CODE:
Pacific Lutheran University is located in Tacoma, Washington.<br>Founded in 1890, the university has an enrollment of 3,684 students.
RESULT:
Pacific Lutheran University is located in Tacoma, Washington. Founded in 1890, the university has an enrollment of 3,684 students.
- Bold
CODE: <b>courses</b>
RESULT: courses
- Italic
CODE: <i>courses</i>
RESULT: courses
- Underline
CODE: <u>courses</u>
RESULT: courses
- Unordered Lists (bullets)
CODE:
<b>Courses</b>
<ul type="disc">
<li>Web Development 101</li>
<li>Web Development 201</li></ul>
RESULT:
Courses
- Web Development 101
- Web Development 201
OPTIONS: Instead of "disc", try "circle" or "square"
- Ordered Lists (numbered)
CODE:
<b>Courses</b>
<ol type="1">
<li>Web Development 101</li>
<li>Web Development 201</li></ol>
RESULT:
Courses
- Web Development 101
- Web Development 201
OPTIONS: Instead of "1", try "a" or "I"
- Definition Lists (indents)
CODE:
<b>Courses</b>
<dl>
<dd>Web Development 101
<dd>Web Development 201</dl>
RESULT:
Courses
- Web Development 101
- Web Development 201
- Font tags
CODE:
<font face="arial" size="2" color="green">courses</font>
RESULT: courses
OPTIONS:
Recommended fonts: "times" or "arial"
Sizes: 1, 2, 3, 4, 5, 6, and 7
Colors: aqua, black, red, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, yellow, white
- Links
CODE:
<a href="http://www.plu.edu">PLU Home Page</a>
RESULT:
PLU Home Page
- Tables
CODE:
<table width="300" bgcolor="purple" cellspacing="3" cellpadding="3" border="0">
<tr><td colspan="3"> <font color="white" face="arial"> <b>Named Colors:</b></font></td></tr>
<tr><td width="100" bgcolor="lime" align="left" valign="top">
aqua<br>black<br>blue<br>fuchsia<br>gray<br>green</td>
<td width="100" bgcolor="black" align="center" valign="middle">
<font color="white">
lime<br>maroon<br>navy<br>olive</td>
<td width="100" bgcolor="lime" align="right" valign="bottom">
purple<br>red<br>silver<br>teal<br>yellow<br>white</td></tr> </table>
RESULT:
| Named Colors: |
aqua black blue fuchsia gray green
|
lime maroon navy olive |
purple red silver teal yellow white |
- Horizontal rule
<hr>
Faculty Home Page Template
Maintained by:
Lindsay Tomac (tomaclr@plu.edu)
Last Update: 05/28/99
Get Help | Send Feedback
|