• html实例


    <html>

    <head>

    <title>html实例</title>

    </head>

    <body>

    HTML文档内容!

    <br><font color=red size=20>第二行</font>

    <br><h1>标题1</h1>

    <h3>标题3</h3>

    <p>

    111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111

    </p>

    <p>

    asdfasdfasdfsadfasfadsfasasdfasdfasfasfasdfasdfasdfasdfdasfasasfasfsafasfasfasfas

    </p>

    <br>11111111111111111111112222222<br>

    22222222222222222222222222

    <pre>

    fasdfasfsaf

    </pre>

    <img height=200 width=500  src="baidu.gif">

    <!--超链接-->

    <a href="http://www.baidu.com" target="_blank"><img src="baidu.gif" /></a>

    <!--列表,ol表示有序列表,ul表示无序列表,dl表示定义列表-->

    <ol>

    <li>张三</li>

    <li>李四</li>

    <li>王五</li>

    <li>赵六</li>

    <li>抁七</li>

    </ol>

    <ul>

    <li>红色</li>

    <li>绿色</li>

    <li>蓝色</li>

    <li>粉色</li>

    <li>紫色</li>

    </ul>

    <dl>

    <dt>red</ddt>

    <dd>红色</dd>

    <dt>blue</dt>

    <dd>蓝色</dd>

    </dl>

    <!--table表示表格,th表头tr行td列-->

    <table border=1>

    <tr>

    <th>学号</th>

    <th>姓名</th>

    <th>班级</th>

    <th colspan=2>操作</th>

    </tr>

    <tr>

    <td>110001</td>

    <td>张帆</td>

    <td>软件测试110001</td>

    <td>删除</td>

    <td>修改</td>

    </tr>

    <tr>

    <td>110002</td>

    <td>李红</td>

    <td>会计电算化</td>

    <td>删除</td>

    <td>修改</td>

    </tr>

    </table>

    </body>

    </html>

  • 相关阅读:
    iptables 详解
    Linux Crontab 定时任务命令详解
    Linux下查看历史操作记录
    Linux shell if 参数
    Linux的五个查找命令:find,locate,whereis,which,type
    linux下IPTABLES配置详解
    Linux命令之while Bash中的While循环
    日志分割脚本
    详解 Too many open files
    微软停止对WindowsNT4.0系统提供无偿的支持
  • 原文地址:https://www.cnblogs.com/xiaona19841010/p/5476486.html
Copyright © 2020-2023  润新知