• HTML 文本格式化实例 超链接


     HTML 文本格式化实例

    1.文本格式化

    <b>加粗文字</b>

    <strong>加重语气</strong>

    <big>dingyi</big>

    <em>着重文字</em>

    <i>斜体</i>

    <small>小字体</small>

    <sub>文字在前面文字的右下角</sub>

    <sup>文字在前面文字的右上角</sup>

    2.预格式文本

    <pre>

    保留你

    写文字   的状态

    自动换行   空格

    </pre>

    <pre> 比较适合计算机代码

    for i = 1 to 10

    print i

    next i

    </pre>

    3.计算机输出标签

    <code>Computer cod不保留空格和折行e</code>

    <br />

    <kbd>Keyboard input</kbd>

    <br />

    <tt>Teletype text < /tt >

    <br />

    <samp>Sample text</samp>

    <br />

    4.地址

    <address></adress>

    5.缩写和首字母缩写

    <abbr title=“etcetera”>etc.</abbr>

    <acronym title=“world wide web”>WWW</acronym>

    <p><dfn title=@“world health organze”>who</dfn>文字简体斜体</p>

    <p><dfn><abbr title=“”>SX</abbr></dfn>文字鼠标经过时显示原来的</p>

    6.文字方向

    <bdo dir=“rtl”>

    文字显示从右向左

    </bdo>

    7.块引用

    <blockquote>浏览器会换行和添加外边距</blockquote>

    <q>不会有特殊呈现 只会加一个双引号</q>

    8.删除字效果和插入字效果

    <del>文字上加横线</del>

    <ins>文字底部加横线</ins>

    9.爱因斯坦公式

    <p><var>E</var> = <var>m</var> <var>c</var><sup>2</sup></p>

    10网页跳转(类似于)

    <a href="/example/html/lastpage.html" style="text-decoration:none">

    这是一个链接!

    </a>

     文章纯属笔记,如有雷同,纯属巧合

  • 相关阅读:
    any、some、all for sql
    Date CONVERT() 函数
    Config Database
    移动master 数据库
    使用 OpenRowSet 和 OpenDataSource 访问 Excel 972007
    动态管理视图和函数
    SQL Server 2005 Merge Replication Step by Step Procedure
    系统试图(返回表所有记录数及所有的 identity 列)
    js if without curly brackets bug All In One
    Web3 All In One
  • 原文地址:https://www.cnblogs.com/ccw-congcong/p/7363317.html
Copyright © 2020-2023  润新知