HTML基础

基础

  

<!-- html 网页结构 -->

<html>

    <!-- 头部部分 -->

    <head>

        <title>Document</title>

    </head>

    <!-- 主体部分 -->

    <body>

    </body>

</html>

文本标签

 <h1>文本标签</h1>

        <b>粗体</b>

        <strong>粗体</strong>  

        <i>斜体</i>

        <em>斜体</em>

        <u>下划线</u>

        <s>删除线</s>

        <big>正常字体大</big>

        <small>正常字体小</small>

        <sup>上标</sup>

        <sub>下标</sub>

        <p>段落标签</p>

图片标签

 <img src="https://www.baidu.com/img/flexible/logo/pc/result.png" alt="百度logo" title="百度logo" width="200" height="100" />

列表标签

 <h1>列表标签</h1>

        <ul>

            <li>无序列表</li>

            <li>无序列表</li>

            <li>无序列表</li>

        </ul>

        <ol>

            <li>有序列表</li>

            <li>有序列表</li>

            <li>有序列表</li>

        </ol>

超链接

 <h1>链接</h1>

        <!-- 普通链接 -->

        <a href="https://www.baidu.com" target="_blank">百度</a>

        <!-- 书签链接 -->

        <a href="#marker">主题名称</a>

        <a href="#top">头部</a>

        <a href="#bottom">底部</a>

        <h1>书签链接</h1>

  
  
  

        <a name="marker">主题名称</a>

        <a name="top">头部</a>
        <a name="bottom">底部</a>

转义字符

  <h1>转义字符</h1>

        <p>&lt; &gt; &amp; &quot; &apos;&nbsp;</p>

表格

    <h1>表格</h1>

        <table border="1" width="200">

            <caption>标题</caption>

            <tr>

                <th>表头</th>

                <th>表头</th>

                <th>表头</th>

            </tr>

            <tr>

                <td align="center">内容</td>

                <td>内容</td>

                <td rowspan="2">内容</td>  

            </tr>

            <tr>

                <td align="right">内容</td>

                <td>内容</td>

            </tr>

            <tr>

                <td colspan="3">内容</td>

            </tr>

        </table>

多媒体

在网页中插入多媒体的最简单的方法就是利用< a>标签的href属性直接进行链接

 <a href="链接地址">链接源</a>
<h1>多媒体标签</h1>
 <h1>多媒体标签</h1>

        <embed src="https://www.w3school.com.cn/i/movie.ogg" width="200" height="100">embded标签</embed>

        <audio src="https://www.w3school.com.cn/i/song.mp3" controls="controls"></audio>

        <video src="https://www.w3school.com.cn/i/movie.ogg" controls="controls"></video>

        <object data="https://www.w3school.com.cn/i/movie.ogg" width="200" height="100" type="video/ogg">object标签</object>

\

表单

form

  • action 值为url,指向处理表单的程序,表单数据将被发送到此程序
  • method 设定数据传送的方式 get 或 post
  • name 设定表单的名字
  <form action="https://www.baidu.com" method="get">

            <input type="text" name="username" value="admin" maxlength="10" readonly="readonly" disabled="disabled" />

            <input type="password" name="password" value="123456" maxlength="10" />

            <input type="radio" name="sex" value="male" checked="checked" /><input type="radio" name="sex" value="female" /><input type="checkbox" name="hobby" value="basketball" checked="checked" />篮球

            <input type="checkbox" name="hobby" value="football" />足球

            <input type="checkbox" name="hobby" value="pingpang" />乒乓球

            <input type="file" name="file" />

            <input type="submit" value="提交" />

            <input type="reset" value="重置" />

            <input type="button" value="按钮" onclick="alert('hello')" />

            <select name="city">

                <option value="beijing">北京</option>

                <option value="shanghai" selected="selected">上海</option>

                <option value="guangzhou">广州</option>

            </select>

            <textarea name="desc" cols="30" rows="10">描述</textarea>

        </form>

表单元素

在这里插入图片描述

input

  • type : text,password,checkbox
  • name: 输入区的名字
  • value:对于不同的输入类型,用法不同

select

  • selected 下拉列表的初始选择状态
  • value 若设置了value属性,则表单提交的内容即为value属性中设定的内容,而非下拉列表中显示的内容

textarea

  • name 多行文本框的名称
  • rows 用于设定最大行数
  • cols 设定的最大列数

label

  • 当点击该标签的时候,关联的元素会响应
  <input type="radio"  id="c1" value="male">

            <label for="c1"></label>

filedset

  • 当表单元素很多的时候,讲表单元素用该标签分组,以免用户输入数据时眼花缭乱,而legend标签可为分组设置标题
  <fieldset>

                <legend>标题</legend>

                <input type="text" name="username" value="admin" maxlength="10" readonly="readonly" disabled="disabled" />

            </fieldset>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值