html基本语法学习

63 阅读1分钟

   <h1>标题标签 独占一行 一般一个网页使用h1一次</h1>    <form action="http://www.baidu.com">        账号:<input type="text">        <button type="reset">&lt;按钮&gt;</button>    </form>        <br>    <textarea>请输入内容</textarea>    <br>    城市:<select >        <option value="" selected>北京</option>        <option value="">上海</option>        <option value="">武汉</option>    </select>    <br>    文本框:<input type="text" placeholder="请输入账号">    <br>    密码框:<input type="password" placeholder="请输入密码">    <br>    性别:<input type="radio" name="six" checked id="man"> <label for="man"></label>    <label><input type="radio" name="six"></label>    <br>    上传文件:<input type="file" multiple>    <table border="1">        <tr>            <th>姓名</th>            <th>数学</th>            <th>语文</th>            <th>总分</th>        </tr>        <tr>            <td>张三</td>            <td>99</td>            <td rowspan="2">100</td>            <td>199</td>        </tr>        <tr>            <td>李四</td>            <td>98</td>            <!-- <td>100</td> -->            <td>198</td>        </tr>        <tr>            <td>总结</td>            <td colspan="3">全市第一</td>            <!-- <td>全市第一</td>            <td>全市第一</td> -->        </tr>    </table><br>    <table border="1">        <thead>            <tr>                <th>姓名</th>                <th>数学</th>                <th>语文</th>                <th>总分</th>            </tr>        </thead>       <tbody>        <tr>            <td>张三</td>            <td>100</td>            <td>100</td>            <td>200</td>        </tr>       </tbody>       <tfoot>        <tr>            <td>总结</td>            <td>全市第一</td>            <td>全市第一</td>            <td>全市第一</td>        </tr>       </tfoot>    </table>    <ul>        <li>无序列表1</li>        <li>无序列表2</li>    </ul>    <ol>        <li>有序列表1</li>        <li>有序列表2</li>    </ol>    <dl>        <dt>定义列表标题</dt>        <dd>定义列表描述</dd>    </dl>    <hr>    <p>段落标签 下面有间隙</p>    <strong> strong 加粗效果</strong>    <br>    <b>b 加粗效果</b>    <br>    <em>em 倾斜效果</em>    <br>    <i>i 倾斜效果</i>    <br>    <ins>ins 下划线效果</ins>    <br>    <u>u 下划线效果</u>    <br>    <del>del 删除线效果</del>    <br>    <s>s 删除线效果</s>    <br>    <img src="./image/1ab84568f2206606ac8c98f592319449.jpeg" alt="图片无法显示提示文字" title="鼠标悬停上面显示文字" height="100" width="200">    <br>    <a href="https://www.baidu.com" target="_top">跳转百度</a>    <br>    <a href="./本地路径.html">本地路径</a>    <br>    <a href="#">空连接</a>    <br>    <audio src="./Html基本骨架.html" controls loop autoplay></audio>    <video src="./Html基本骨架.html" muted></video>