Sections

Resources

Basic HTML

Tags that you can use in the html/code view for the Baylor Business CMS

Beginning Tag

Ending Tag Description & Example
<a href="url here">
</a>

Linking to another page and/or site.
Example: <a href="business.baylor.edu">Baylor Business</a>

<b>
</b>
Bold text style

<blockquote>
</blockquote>
Indention

<br>
none
Single Space, forced line break.

<center>
</center>
Shorthand for DIV align=center

<div>
</div>
Div align is used for center, left and right aligning blocks of text.

<form>
</form>
Interactive form. See Mike Pond if interested in an interactive form.

<hr>
none
Horizontal rule

<i>
</i>
Italic text style

<p>

</p>

Paragraph
This can be set for center, left, or right alignment.

<p align="center">Centering paragraph.</p>

<p align="left">Left align paragraph. Actually, the default is left, so the extra tagging is unnecessary.</p>

<p align="right">Right align paragraph.</p>

<strong>
</strong>
Strong emphasis. Same as bold.

<td>
</td>
Table data cell

<tr>
</tr>
Table row

<u>
</u>
Underlined text style

Return to: Baylor Business Content Management System | Top of Page