网页 HTML表格

    今天,我开始学习了网站开发中HTML的部分内容,主要包括标签和表格。

    body的属性:bgcolor,background,text,topmargin,bottomargin,leftmargin,rightmargin.格式控制字体font的属性:<font color="" face="" size=""></font>.

    <b>字体加粗</b>,<i>倾斜</i>,<u>下划线</u>,<strong>字体加粗(语气加强用)</strong>,<em>字体倾斜(语气加强用)</em>,<br />换行,&nbsp;表示空格。

    <h1></h1>------<h6></h6>表示一到六级标题,会自动换行,并且,字号逐级减小。<p>段落标签</p>,<div>层标签(默认占一整行)</div>,<span>层标签(默认用多大空间占多大空间)</span>。

    <ol>有序列表,ol改为ul则为无序列表

          <li></li>

           <li></li>

    </ol>

    <img src="" alt="" width=""/>图片标签。<a href="超链接地址"  target="_blank">超链接的文字</a>.

    表格:

    <table>属性:width宽度,border边框,cellpadding内容跟单元格边框的边距,cellspacing单元格之间的间距,align水平对齐方式,bgcolor背景色,background背景图片

               <tr>

                      <td>

                       </td>

                </tr>

    </table>

原文地址:https://www.cnblogs.com/hongsen3/p/5750088.html