zoukankan      html  css  js  c++  java
  • html的标签

    <p></p>    段落标签
    <hr />       网页分割线
    <strong></strong> 自由加粗字体 斜字体

    &nbsp; 空格

    <tittle></title>网页标签

    <head></head>网页标头网页主体内容</p>
    <h1></h1>   h1 - h6 为加大加粗字体

    <a href = '要跳转的连接' title = '对超链接附加提示' target='_blank'>超链接标签</a>         target='_blank'  在新的浏览器窗口打开新的连接

    <br>    网页换行标签

    <ul>

      <li></li>

    </ul>    无序列表

    <ol>

      <li></li>

    </ol>    有序列表

    <dl>      自定义列表

      <dt></dt>     表头阐述 加粗字体

      <dd></dd>    列表内容

    </dl>

    <table border  = ‘1’ cellspacing = '0'>          ‘table’  制作表格;   “border = ‘1’”   使表格产生边框 ;    "cellspacing = '0'"    使边框之间的间距为零;

      <tr>      代表表格行列

        <th>  表格的表头加粗字体

        </th colspan = ‘2’>      “colspan = ‘2’”   使表格横向合并,合并列数,合并几列就填写某数字

      </tr>

      <tr>

        <td rowspan = '3'>  “<td></td>”行列的 产品描述,不能加粗字体,类似<th></th>用法  ; “rowspan = '3'”  纵向合并,合并行列,合并几行就写数字几。

        </td>

      </tr>

    </table >

  • 相关阅读:
    2015.07.20MapReducer源码解析(笔记)
    Hive(笔记)
    HDFS入门(1)
    Zookepper(2015.08.16笔记)
    USB_ModeSwitch 介绍(转)
    Perl 模块 Getopt::Std 和 Getopt::Long
    在linux下设置开机自动启动程序的方法
    gcc Makefile 入门
    Linuxexec函数族及system函数
    signal(SIGHUP, SIG_IGN)的含义
  • 原文地址:https://www.cnblogs.com/yuexijun/p/12299133.html
Copyright © 2011-2022 走看看