Editing HTML in Dreamweaver > Understanding basic HTML tags > Text formatting tags

 

Text formatting tags

You can use HTML source code to format the text in your Web page. For example, you can specify text to be bold or italic and display in a particular font:

<b>This text will appear bold in the Web page</b>.
<i>This text will appear italic in the Web page</i>.
<font face="verdana" size="2">This text will display with the 
Verdana font face and will be larger than the other text.</font>