html基础知识

一、锚点:

  <a herf ="" name="zhuang"></a>

  <a herf="#zhuang"></a>

二、内联框架:

  <iframe src="" frameborder="1" name="our"></iframe>

  <a herf=""taget="our">内联框架</a>

三、列表:

  <ol>

    <li></li>

  </ol>

  <ul>

    <li></li>

  </ul>

  <dl>

    <dt></dt>

    <dd></dd>

  <dl>

四、表格:

  <table border="1" align="center" cellpadding="10px">

    <caption></caption>

      <tr>

        <td></td>

      </tr>

五、表单:

   <form action"" method="post">

      <fieldset>

          <legend></legend>

      </fieldset>

原文地址:https://www.cnblogs.com/xingxing88/p/5839992.html