赞
踩
<!-- 独占一行, 自带上下间距, 字体加粗 -->
<h1 align="center">文档标题1</h1>
<h2 align="right">文档标题2</h2>
<h3>文档标题3</h3>
<h4>文档标题4</h4>
<h5>文档标题5</h5>
<!-- 换行 -->
<h1 align="center">文档标题1</h1>
<br>
<h2 align="right">文档标题2</h2>
<p>段落标签1</p>
<p>段落标签2</p>
<p>段落标签3</p>
<p>段落标签1</p>
<hr>
<p>段落标签3</p>
<b>加粗</b>
<i>斜体</i>
<u>下划线</u>
<s>删除线</s>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<ul>
<li>凉菜
<ul>
<li>白菜</li>
<li>黄瓜</li>
</ul>
</li>
<li>热菜
<ol>
<li>黄瓜</li>
<li>白菜</li>
</ol>
</li>
</ul>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<h1 align="center">个人简历</h1> <hr> <h2>基本信息</h2> 姓名: <b>苍老师</b> 性别: 男 爱好: 摄影 <h2>个人经历</h2> <ul> <li>小学9年</li> <li>中学6年</li> <li>高中12年</li> </ul> <h2>获得荣誉</h2> <ol> <li>知名度最高奖</li> <li>体重达人</li> </ol>
<img src="1.webp" alt="图片1" title="我是标题" width="80%" height="80%">
<img src="https://lmg.jj20.com/u1200.jpg" alt="图片1" title="我是标题" width="800" height="500">
<p id="top1"></p>
<br>
<br>
.
.
.
<br>
<br>
<a href="#top1">跳转到1</a>
<a href="https://www.baidu.com">超链接1</a>
<a href="02简历练习.html">超链接2</a>
<a href="1.webp">超链接3</a>
<a href="https://www.baidu.com">
<img src="1.webp" alt="未找到">
</a>
<table border="1"> <caption>购物车</caption> <tr> <th>编号</th> <th>名称</th> <th>价格</th> </tr> <tr> <td>01</td> <td>康师傅</td> <td>3元</td> </tr> <tr> <td>02</td> <td>怡宝</td> <td>2元</td> </tr> </table>
<table border="1">
<tr>
<td colspan="2">1-1</td>
<td rowspan="2">1-2</td>
<td rowspan="3">1-3</td>
</tr>
<tr>
<td>2-1</td>
<td>2-3</td>
</tr>
<tr>
<td colspan="3">3-1</td>
</tr>
</table>
表单在网页中主要负责数据采集功能。HTML中的<form>标签,就是用于采集用户输入的信息,并 通过<form>标签的提交操作,把采集到的信息提交到服务器端进行处理
属性 | 值 | 描述 |
---|---|---|
action | URL地址 | 规定当提交表单时,向何处发送表单数据 |
method | get或post | 规定以何种方式把表单数据提交到 action URL |
enctype | application/x-www-form-urlencoded multipart/form-data text/plain | 规定在发送表单数据之前如何对其进行编码 |
target | _blank _self _parent _top framename | 规定在何处打开 |
用户名: <input type="text" name="wd" maxlength="5" value="tom"
readonly placeholder="请输入用户名"> <br>
密码: <input type="password" name="password" placeholder="请输入密码">
<input type="submit" value="注册">
性别:
<input type="radio" name="gender" value="m"> 男
<input type="radio" name="gender" value="w" checked> 女
<input type="checkbox" name="hobby" checked value="cy"> 抽烟
<input type="checkbox" name="hobby" checked value="hj"> 喝酒
<input type="checkbox" name="hobby" checked value="tt"> 烫头
<br>
生日: <input type="date" name="birthday" ><br>
照片: <input type="file" name="pic"><br>
<select name="city" id="">
<option value="bj">北京</option>
<option value="sh" selected>上海</option>
<option value="gz">广州</option>
</select> <br>
<input type="reset" value="重置按钮">
<button type="reset">重置按钮</button>
<button type="button">自定义按钮</button>
属性值 | 说明 |
---|---|
type=“email” | 限制用户输入的必须为邮箱 |
type=“url” | 限制用户输入的必须为URL |
type=“date” | 限制用户输入的必须为日期 |
type=“time” | 限制用户输入的必须为时间 |
type=“month” | 限制用户输入的必须为月份 |
type=“week” | 限制用户输入的必须为周 |
type=“number” | 限制用户输入的必须为数字 |
type=“tel” | 限制用户输入的必须为手机号码 |
type=“search” | 搜索框 |
type=“color” | 生成一个颜色选择表单 |
属性 | 值 | 说明 |
---|---|---|
required | required | 表示内容不能为空 ,必填项 |
placeholder | 提示文本 | 提示信息 |
autofocus | autofocus | 自动聚焦,页面加载完成自动聚焦光标 |
autocomplete | off/on | 当用户在字段开始键入时,浏览器基于之前键入过的值,应该显示出在字段中填写的选项。默认已经打开,如autocomplete=“on”,关闭autocomplete =”"off"需要放在表单内,同时加上name属性,同时成功提交 |
multiple | multiple | 可以多选文件提交 |
<video src="url" controls="controls"></video>
属性 | 值 | 说明 |
---|---|---|
autoplay | autoplay | 视频自动播放(chorme需要添加muted属性才可以自动播放) |
controls | controls | 向用户展示视频控件 |
width | 像素 | 设置播放器宽度 |
height | 像素 | 设置播放器高度 |
loop | loop | 是否循环播放视频 |
preload | auto(预先加载视频);none(不预加载视频) | 规定是否预加载视频(若设置了autoplay属性则会忽略) |
src | 视频路径 | 视频url |
poster | 图片路径 | 加载等待时显示的图片 |
muted | muted | 静音播放 |
<video poster="https://ys.mihoyo.com/main/_nuxt/img/47f71d4.jpg"
loop="loop"
muted="muted"
autoplay="autoplay"
controls
style="width: 1665.78px; height: 937px;">
<source src="https://ys.mihoyo.com/main/_nuxt/videos/3e78e80.mp4" type="audio/mp4">
不支持
</video>
<audio src="url" controls="controls"></audio>
属性 | 值 | 说明 |
---|---|---|
autoplay | autoplay | 音频就绪后自动播放 |
controls | controls | 向用户展示音频控件 |
loop | loop | 音频循环播放 |
src | url | 要播放音频的url |
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。