English 中文(简体)
HTML - Phrase Tags
  • 时间:2024-09-17

HTML - Phrase Tags


Previous Page Next Page  

The phrase tags have been desicolgned for specific purposes, though they are displayed in a similar way as other basic tags pke <b>, <i>, <pre>, and <tt>, you have seen in previous chapter. This chapter will take you through all the important phrase tags, so let s start seeing them one by one.

Emphasized Text

Anything that appears within <em>...</em> element is displayed as emphasized text.

Example

<!DOCTYPE html>
<html>

   <head>
      <title>Emphasized Text Example</title>
   </head>
	
   <body>
      <p>The following word uses an <em>emphasized</em> typeface.</p>
   </body>
	
</html>

This will produce the following result −