您的位置:首页 > Web前端 > HTML

HTML 学习三(文本格式化)

2013-12-29 06:53 127 查看
1.HTML Text Formatting Tags如下所示:

<!DOCTYPE html>
<html>
<body>
<p> <b>This text is bold.</b></p>
<p><strong>This text is strong.</strong></p>
<p><em>This text is emphaized.</em></p>
<p><i>This text is italic.</i></p>
<p><small>This text is small.</small></p>
<p>This is <sub>subscript</sub> and <sup>superscript</sup></p>
<p>My favorite color is <del>blue</del> <ins>red</ins></p>
<p><b>Note:</b>Browsers will strikethrough deleted text and
underline inserted text</p>
<p>Do not forget to buy the <mark>milk</mark> today.</p>
</body>
</html>


HTML文本格式化一
效果如下图所示:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: