67.【HTML 5】(二)

简介: 67.【HTML 5】

8.表格标签

1.为什么要使用表格?
(1).简单通用
(2).结构稳定
2.基本结构
(1).单元格,行,列,跨行,跨列
<table> 表格
<caption>标题</caption>
<tr> 行
<td>表头</td>  列
跨行
<td  rowspan="2"></td>
跨列
<td colspan="3"></td>
</tr>
</table>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表格</title>
</head>
<body>
<!--表格(Table)
行 :row <tr>
列 :description(table ) (td)
-->
<table border="1px">
  <tr>
<!--    colspan 跨列-->
   <td colspan="3">学生成绩</td>
  </tr>
<!--  rowspan-->
  <tr>
    <td rowspan="2">吉士先生</td>
    <td>2-3</td>
    <td>2-4</td>
  </tr><tr>
  <td>3-1</td>
  <td>3-2</td>
</tr>
  <tr>
    <td rowspan="2">李明</td>
    <td>3-2</td>
    <td>3-3</td>
  </tr>
  <tr>
    <td>3-1</td>
    <td>3-2</td>
  </tr>
</table>
</body>
</html>

<table border="1"align="center" bgcolor="#deb887">
      <caption>我是标题</caption>
      <tr>
        <th>表头1</th> <th>表头1=2</th> <th>表头1=3</th>
      </tr>
      <tr>
        <td>内容1</td><td>内容2</td><td>内容3</td>
      </tr>
      <tr>
        <td>内容4</td><td>内容5</td><td>内容6</td>
      </tr>
    </table>

9.媒体元素

1.video 音频(视频)
音频和视频
src: 视频地路径
control: 进度条
autoplay: 自动播放
<video src="../resources/Video/1..mp4" controls autoplay></video>
2.audio 音乐
src: 视频地路径
control: 进度条
autoplay: 自动播放
muted: 静音
loop: 循环
<audio src="../resources/Video/2.m4a" controls autoplay></audio>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>视频学习</title>
</head>
<body>
<!--音频和视频
src: 视频地路径
control: 进度条
autoplay: 自动播放
-->
<!--<video src="../resources/Video/1..mp4" controls autoplay></video>-->
<audio src="../resources/Video/2.m4a" controls autoplay></audio>
</body>
</html>

10.页面结构分析

1.页面结构分析操作:
<head><h1>网页头部</h1></head>
<section>
  <h1>网页主题部分</h1>
</section>
<footer><h1>网页脚部</h1></footer>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>页面结构</title>
</head>
<body>
<head><h1>网页头部</h1></head>
<section>
  <h1>网页主题部分</h1>
</section>
<footer><h1>网页脚部</h1></footer>
</body>
</html>

11.iframe内联框架

ifname必写项目:
<iframe src=""  name="hello" frameborder="0" ></iframe>
1.网页里面再内嵌一个网页
src: 地址
w-h 宽度和高度
name: 相当于一个标签,与target搭配超链接跳转
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>内联框架</title>
</head>
<!--
src: 地址
w-h 宽度和高度
-->
<body>
<iframe src=""  name="hello" frameborder="0" width="1000px" height="800px"></iframe>
<a href="https://blog.csdn.net/qq_69683957?spm=1000.2115.3001.5343" target="hello">点击我跳转</a>
</body>
</html>

12.表单语法

必写:
<form action="" method=""></form>
name:抓包用的。。。。。。。。
text中的value代表: 文本框的内容
action :表单提交地位置,可以是网站,也可以是一个请求处理地位
method : post|get 提交方式
get方式提交: 我们可以再url中,看到我们提交地信息,不安全,能够看到账号和密码
pos方式提交: 我们看不到密码和账号,比较安全。
`
1.form_data
<form action="" method="">  表单
<p>名字: <input type="text" name="Username"></p>
<p>密码: <input type="password" name="Passworld"></p>
<p>
  <input type="submit" name="提交">
  <input type="reset" name="重置">
</form>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表单</title>
</head>
<body>
<!--
action :表单提交地位置,可以是网站,也可以是一个请求处理地位
method : post|get 提交方式
get方式提交: 我们可以再url中,看到我们提交地信息,不安全,能够看到账号和密码
pos方式提交: 我们看不到密码和账号,比较安全。
`
-->
<h1>注册窗口</h1>
<form action="1.我的第一个网页.html" method="post">
<!--文本输入框-->
<p>名字: <input type="text" name="Username"></p>
<p>密码: <input type="password" name="Passworld"></p>
<p>
  <input type="submit" name="提交">
  <input type="reset" name="重置">
</p>
</form>
</body>
</html>

相关文章
|
2月前
|
移动开发 前端开发 JavaScript
HTML
【10月更文挑战第14天】HTML
34 4
|
1月前
|
存储 移动开发 UED
HTML5 1
HTML5 是对传统 HTML 的重大升级,引入了新元素和属性,全面支持 CSS3,并增强了多媒体功能(Video 和 Audio)、图形处理(2D/3D 制图)、本地存储和应用开发能力。它简化了视频和音频的嵌入,提供了强大的图形绘制工具(如 &lt;canvas&gt; 和 SVG),并优化了 Web 应用的性能和用户体验。此外,HTML5 还引入了多种新的 CSS3 特性,如动画、转换和阴影效果等。
|
1月前
|
移动开发 Ruby HTML5
HTML52
HTML5引入了许多语义元素,
|
4月前
|
数据格式
什么是HTML?
【8月更文挑战第27天】什么是HTML?
54 2
|
5月前
|
移动开发 SEO HTML5
HTML4(一)
HTML4(一)
22 0
|
7月前
|
前端开发 JavaScript
什么是HTML?
HTML是超文本标记语言,用于创建网页的标准语言,专注于内容结构和含义,不涉及样式。它由标签组成,如&lt;title&gt;、&lt;p&gt;、&lt;a&gt;等,与CSS和JavaScript配合使用,分别负责样式和交互性。示例代码展示了一个基本的HTML文档结构,包括标题、段落和链接。
|
7月前
|
前端开发 搜索推荐
html的常用技巧
【4月更文挑战第1天】html的常用技巧
27 2
|
7月前
|
前端开发 程序员 开发者
8个你可能不知道的令人震惊的 HTML 技巧
8个你可能不知道的令人震惊的 HTML 技巧
初学html
初学html html标签 标签的属性 文档声明
79 0

相关实验场景

更多