Chapter01

什么是HTML

  • HTML

    • Hyper Text Markup Language(超文本标记语言
    • 超文本包括:文字、图片、音频、视频、动画等
  • 目前使用HTML5 + CSS3

HTML5的优势

天然跨平台

W3C标准

  • W3C
  • W3C标准包括:
    • 结构化标准语言(HTML、XML)
    • 表现标准语言(CSS)
    • 行为标准(DOM、ECMAScript)

HTML基本结构

HTML基本结构

body、/body等成对的标签,分别叫开放标签闭合标签

单独出现的叫自闭合标签

单独呈现的标签(空元素),如hr\;意为用/来关闭标签

网页基本信息

  • DOCTYPE声明
  • \标签

  • \标签

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- DOCTYPE:告诉浏览器,我们要使用什么规范 -->
<!DOCTYPE html>

<html lang="en">
<!-- head标签代表网页头部 -->
<head>
<!-- mata描述性标签,它用来描述我们的网站的一些信息 -->
<!-- mata标签一遍用来做SEO-->
<meta charset="UTF-8">
<meta name="keywords" content="狂神说Java,西部开源">
<meta name="description" content="来找个地方可以学习Java">

<!-- title网页标题 -->
<title>我的第一个网页</title>
</head>
<!-- body标签代表网页主体 -->
<body>
<p>Hello,World!</p>
我的第一个网页
</body>
</html>

Chapter02

网页基本标签

  • 标题标签
  • 段落标签
  • 换行标签
  • 水平线标签
  • 字体样式标签
  • 注释和特殊符号
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>基本标签学习</title>
</head>
<body>

<!--标题标签-->
<h1>一级标签</h1>
<h2>二级标签</h2>
<h3>三级标签</h3>
<h4>四级标签</h4>
<h5>五级标签</h5>
<h6>六级标签</h6>

<!--段落标签-->
<p>两只老虎两只老虎</p>
<p>跑得快跑得快</p>
<p>一只没有耳朵</p>
<p>一只没有尾巴</p>
<p>真奇怪真奇怪</p>

<!--水平线标签-->
<hr/>

<!--换行标签-->
两只老虎两只老虎<br/>
跑得快跑得快<br/>
一只没有耳朵<br/>
一只没有尾巴<br/>
真奇怪真奇怪<br/>

<!--粗体,斜体-->
<h1>字体样式标签</h1>

<p>粗体:<strong>I love you</strong></p>
<p>斜体:<em>I love you</em></p>
<br/>
<!--特殊符号-->

空 格<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<br/>
&gt;
<br/>
&lt;
<br/>
&copy;版权所有聂千龙
<!--
特殊符号记忆方式
&开头
-->
</body>
</html>

图像标签

  • 常见的图像格式
    • JPG
    • GIF
    • PNG
    • BMP

图片标签

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>图像标签学习</title>
</head>
<body>
<!--img标签学习
src:图片地址(必填)
相对地址(推荐使用),绝对地址
../ 上一级目录
alt:图片名字(必填)
-->
<img src="../resources/image/128.png" alt="网站头像" title="悬停文字" width="300" height="300">

</body>
</html>

链接标签

a href=”path” target=”目标窗口位置”连接文本或图像/a

  • 文本超链接
  • 图像超链接
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>链接标签学习</title>
</head>
<body>
<!--使用name作为标记-->
<a id="top">顶部</a>

<!--a标签
href:必填,表示要跳转到哪个界面
target:表示窗口在哪里打开
_blank 在新标签页打开
_self 在自己的页面打开
-->
<a href="1.我的第一个网页.html" target="_blank">点击我跳转到页面一</a>
<a href="https://www.baidu.com" target="_self">点击我跳转到百度</a>

<br/>

<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>

<p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p>
<p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p><p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p><p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p><p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p><p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p><p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p><p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p><p>
<a href="1.我的第一个网页.html">
<img src="../resources/image/128.png" alt="网页头像" title="悬停文字" width="300" height="300">
</a>
</p>



<!--锚链接
1、需要一个锚标记
2、跳转到标记
-->
<a href="#top">回到顶部</a>

<a id="down">down</a>


<!--功能性链接
邮件链接:mailto:
QQ链接
-->

<a href="mailto:1355964897@qq.com">点击联系我</a>


</body>
</html>

行内元素和块元素

  • 块元素:
    • 无论内容多少,该元素独占一行
    • (p、h1-h6…)
  • 行内元素:
    • 内容撑开宽度,左右都是行内元素的可以排在一行
    • (a.strong、em…)

列表

  • 什么是列表
    • 列表就是信息资源的一种展现形式。它可以使信息结构化和条理化,并以列表的样式显示出来,一遍浏览者能更快捷地获得相应的信息
  • 列表的分类
    • 无序列表
    • 有序列表
    • 自定义列表
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>列表学习</title>
</head>
<body>
<!--有序列表
应用范围:试卷,问答...
-->
<ol>
<li>Java</li>
<li>Python</li>
<li>运维</li>
<li>前端</li>
<li>C/C++</li>
</ol>
<hr/>
<!--无序列表
应用范围:导航,侧边栏...
-->
<ul>
<li>Java</li>
<li>Python</li>
<li>运维</li>
<li>前端</li>
<li>C/C++</li>
</ul>
<!--自定义列表
dl:标签
dt:列表名称
dd:列表内容
应用范围:公司网站底部
-->
<dl>
<dt>学科</dt>

<dd>Java</dd>
<dd>Python</dd>
<dd>Linux</dd>
<dd>C</dd>
<dt>位置</dt>

<dd>济源</dd>
<dd>北京</dd>
<dd>上海</dd>
</dl>
</body>
</html>

表格

  • 为什么使用表格
    • 简单通用
    • 结构稳定
  • 基本结构
    • 单元格
    • 跨行
    • 跨列

视频和音频

  • 视频元素
    • video
  • 音频元素
    • audio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>媒体元素学习</title>
</head>
<body>
<!--音频和视频
src:资源路径
controls:控制条
autoplay:自动播放
高版本浏览器会禁止自动播放,在src前加上muted
-->

<video muted src="../resources/video/EasyOnMe.mp4" controls width="1200" autoplay></video>

<audio muted src="../resources/audio/水中花.mp3" controls autoplay></audio>
</body>
</html>

Chapter03

页面结构分析

页面结构分析

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>页面结构分析</title>
</head>
<body>
<header>
<h2>网页头部</h2>
</header>

<section>
<h2>网页主体</h2>
</section>

<footer>
<h2>网页脚部</h2>
</footer>

</body>
</html>

iframe内联框架

iframe src=”path”(引用页面地址)name=”mainFrame”(框架识别名)/iframe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iframe内联框架学习</title>
</head>
<body>
<!--iframe 内联框架
src:地址
w-h:宽度高度

-->
<iframe src="https://www.4399.com" frameborder="0" width="1000px" height="800px"></iframe>

<iframe src="" name="hello" frameborder="0" width="1000px" height="800px"></iframe>

<a href="https://www.nieqianlong.cn" target="hello">点击跳转</a>

<iframe src="//player.bilibili.com/player.html?aid=976113810&bvid=BV1y44y1x7g7&cid=425292595&page=1"
scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" width="1000" height="600">
</iframe>
</body>
</html>

表单语法

表单语法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册</title>
</head>
<body>
<h1>注册</h1>

<!--表单form
action:表单提交的位置,可以使网站,也可以是一个请求处理地址
method:post,get 提交方式
get方式提交:我们可以在url中看见我们提交的信息,不安全,高效
post:比较安全,传输大文件
-->
<form action="1.我的第一个网页.html" method="post">
<!-- 文本输入框:input type="text" -->
<p>名字:<input type="text" name="username"></p>
<!-- 密码框:input type="password" -->
<p>密码:<input type="password" name="pwd"></p>

<p>
<input type="submit">
<input type="reset">
</p>
</form>
</body>
</html>

表单元素格式

表单元素格式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册</title>
</head>
<body>
<h1>注册</h1>

<!--表单form
action:表单提交的位置,可以使网站,也可以是一个请求处理地址
method:post,get 提交方式
get方式提交:我们可以在url中看见我们提交的信息,不安全,高效
post:比较安全,传输大文件
-->
<form action="1.我的第一个网页.html" method="get" target="_blank">
<!-- 文本输入框:input type="text"
value:默认初始值
maxlength:最长能写几个字符
size:文本框的长度
-->
<p>名字:<input type="text" name="username" value="肥龙好帅" maxlength="8" size="30"></p>
<!-- 密码框:input type="password" -->
<p>密码:<input type="password" name="pwd"></p>

<!--单选框标签
input type="radio"
value:单选框的值
name:表示组
-->
<p>性别:
<input type="radio" value="boy" name="gender" checked/>
<input type="radio" value="girl" name="gender"/>
</p>

<!--多选框
input type="checkbox"
-->
<p>爱好:
<input type="checkbox" value="sleep" name="hobby">睡觉
<input type="checkbox" value="code" name="hobby" checked>敲代码
<input type="checkbox" value="chat" name="hobby">聊天
<input type="checkbox" value="game" name="hobby">游戏
</p>

<!--按钮
input type="button" 普通按钮
input type="image" 图像按钮
input type="submit" 提交按钮
input type="reset" 重置按钮
-->
<p>按钮
<input type="button" name="btn1" value="点击变长">
<input type="image" src="../resources/image/128.png">
</p>

<!--下拉框,列表框

-->
<p>下拉框
<select name="列表名称">
<option value="china">中国</option>
<option value="american">美国</option>
<option value="swiss" selected>瑞士</option>
<option value="india">印度</option>
</select>
</p>

<!--文本域
-->
<p>反馈:
<textarea name="textarea" cols="50" rows="10">文本内容</textarea>
</p>

<!--文件域-->
<p>
<input type="file" name="files">
<input type="button" value="上传" name="upload">
</p>

<!--邮件验证-->
<p>邮箱:
<input type="email" name="email">
</p>

<!--URL-->
<p>URL:
<input type="url" name="url">
</p>

<!--数字-->
<p>商品数量:
<input type="number" name="num" max="100" min="0" step="1">
</p>

<!--滑块-->
<p>滑块:
<input type="range" name="voice" min="0" max="100" step="2">
</p>

<!--搜索框-->
<p>搜索:
<input type="search" name="search">
</p>

<p>
<input type="submit">
<input type="reset" value="清空表单">
</p>
</form>
</body>
</html>

表单的应用

  • 隐藏域 hidden
  • 只读 readonly
  • 禁用 disabled
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册</title>
</head>
<body>
<h1>注册</h1>

<!--表单form
action:表单提交的位置,可以使网站,也可以是一个请求处理地址
method:post,get 提交方式
get方式提交:我们可以在url中看见我们提交的信息,不安全,高效
post:比较安全,传输大文件
-->
<form action="1.我的第一个网页.html" method="get" target="_blank">
<!-- 文本输入框:input type="text"
value:默认初始值
maxlength:最长能写几个字符
size:文本框的长度
readonly:只读
hidden:隐藏
-->
<p>名字:<input type="text" name="username" value="肥龙好帅" maxlength="8" size="30" readonly></p>
<!-- 密码框:input type="password" -->
<p>密码:<input type="password" name="pwd" hidden value="123456"></p>

<!--单选框标签
input type="radio"
value:单选框的值
name:表示组
checked:预选
disabled:禁用
-->
<p>性别:
<input type="radio" value="boy" name="gender" checked/>
<input type="radio" value="girl" name="gender" disabled/>
</p>

<!--多选框
input type="checkbox"
-->
<p>爱好:
<input type="checkbox" value="sleep" name="hobby">睡觉
<input type="checkbox" value="code" name="hobby" checked>敲代码
<input type="checkbox" value="chat" name="hobby">聊天
<input type="checkbox" value="game" name="hobby">游戏
</p>

<!--按钮
input type="button" 普通按钮
input type="image" 图像按钮
input type="submit" 提交按钮
input type="reset" 重置按钮
-->
<p>按钮
<input type="button" name="btn1" value="点击变长">
<input type="image" src="../resources/image/128.png">
</p>

<!--下拉框,列表框

-->
<p>下拉框
<select name="列表名称">
<option value="china">中国</option>
<option value="american">美国</option>
<option value="swiss" selected>瑞士</option>
<option value="india">印度</option>
</select>
</p>

<!--文本域
-->
<p>反馈:
<textarea name="textarea" cols="50" rows="10">文本内容</textarea>
</p>

<!--文件域-->
<p>
<input type="file" name="files">
<input type="button" value="上传" name="upload">
</p>

<!--邮件验证-->
<p>邮箱:
<input type="email" name="email">
</p>

<!--URL-->
<p>URL:
<input type="url" name="url">
</p>

<!--数字-->
<p>商品数量:
<input type="number" name="num" max="100" min="0" step="1">
</p>

<!--滑块-->
<p>滑块:
<input type="range" name="voice" min="0" max="100" step="2">
</p>

<!--搜索框-->
<p>搜索:
<input type="search" name="search">
</p>

<!--增强鼠标可用性-->
<p>
<label for="mark">你点我试试</label>
<input type="text" id="mark">
</p>

<p>
<input type="submit" disabled>
<input type="reset" value="清空表单">
</p>
</form>
</body>
</html>

表单的初级验证

  • 思考?为什么要进行表单验证
    • 减轻服务器压力
    • 增强数据安全性
  • 常用方式
    • placeholder 提示信息
    • required 非空判断
    • pattern 正则表达式
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册</title>
</head>
<body>
<h1>注册</h1>

<!--表单form
action:表单提交的位置,可以使网站,也可以是一个请求处理地址
method:post,get 提交方式
get方式提交:我们可以在url中看见我们提交的信息,不安全,高效
post:比较安全,传输大文件
-->
<form action="1.我的第一个网页.html" method="get" target="_blank">
<!-- 文本输入框:input type="text"
value:默认初始值
maxlength:最长能写几个字符
size:文本框的长度
readonly:只读
hidden:隐藏
-->
<p>名字:<input type="text" name="username" placeholder="请输入用户名" required></p>
<!-- 密码框:input type="password" -->
<p>密码:<input type="password" name="pwd" required></p>

<!--单选框标签
input type="radio"
value:单选框的值
name:表示组
checked:预选
disabled:禁用
-->
<p>性别:
<input type="radio" value="boy" name="gender" checked/>
<input type="radio" value="girl" name="gender" disabled/>
</p>

<!--多选框
input type="checkbox"
-->
<p>爱好:
<input type="checkbox" value="sleep" name="hobby">睡觉
<input type="checkbox" value="code" name="hobby" checked>敲代码
<input type="checkbox" value="chat" name="hobby">聊天
<input type="checkbox" value="game" name="hobby">游戏
</p>

<!--按钮
input type="button" 普通按钮
input type="image" 图像按钮
input type="submit" 提交按钮
input type="reset" 重置按钮
-->
<p>按钮
<input type="button" name="btn1" value="点击变长">
<input type="image" src="../resources/image/128.png">
</p>

<!--下拉框,列表框

-->
<p>下拉框
<select name="列表名称">
<option value="china">中国</option>
<option value="american">美国</option>
<option value="swiss" selected>瑞士</option>
<option value="india">印度</option>
</select>
</p>

<!--文本域
-->
<p>反馈:
<textarea name="textarea" cols="50" rows="10">文本内容</textarea>
</p>

<!--文件域-->
<p>
<input type="file" name="files">
<input type="button" value="上传" name="upload">
</p>

<!--邮件验证-->
<p>邮箱:
<input type="email" name="email">
</p>

<!--URL-->
<p>URL:
<input type="url" name="url" required>
</p>

<!--数字-->
<p>商品数量:
<input type="number" name="num" max="100" min="0" step="1">
</p>

<!--滑块-->
<p>滑块:
<input type="range" name="voice" min="0" max="100" step="2">
</p>

<!--搜索框-->
<p>搜索:
<input type="search" name="search">
</p>

<!--增强鼠标可用性-->
<p>
<label for="mark">你点我试试</label>
<input type="text" id="mark">
</p>

<p>自定义邮箱:
<input type="text" name="diymail" pattern="^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$">
</p>

<p>
<input type="submit">
<input type="reset" value="清空表单">
</p>
</form>
</body>
</html>

HTML总结

点击跳转HTML总结