Bold, Italics, Etc.

Aside from the various attributes found in the FONT Tags, these tags are inserted between those tags but the text still goes between the Bold, Etc Tags. There are also CSS scripts you can use in place of the conventional methods offered in HTML. We will get to those later in this guide. For now, lets look at the various Tags for this Section:

<b> and </b> are the open and close tags to define specified text to be BOLD

<i> and </i> are the open and close tags to define specified text to be Italic 

<u> and </u> are the open and close tags to define specified text to be Underlined

<strike> and </strike> are the open and close tags to define specified text to be Strike Out

<blink> and </blink> are the open and close tags to define specified text to be Blink (doesn't work with all browsers)

Note that these tags should be placed closest to the text you are trying to alter. Here is an example:

<html>
<head>
<title>
Your Page Name Here
</title>

</head>
</body bgcolor="white">

 

<a href="http://www.linkurlhere.com/"><font size="2"><b> Text Link </b></font></a>
 

</body>
</html>

No comments:

Post a Comment