第一个网页
<!-- 注释
DOCTYPE:告诉浏览器使用什么规范
head标签 网页头部
body标签 网页主体
title标签 网页标题
meta标签 一般用来做seo,告诉网站需要做什么
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="Dave测试">
<meta name="description" content="Dave测试描述">
<title>Title</title>
我是Dave
</head>
<body>
</body>
</html>
基本标签
<!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>hello world</p>
<p>hello world</p>
<p>hello world</p>
<p>hello world</p>
<p>hello world</p>
<!--水平线标签-->
<hr/>
<!--换行标签-->
hello world<br/>
hello world<br/>
hello world<br/>
hello world<br/>
hello world<br/>
<!--字体样式标签 粗体 斜体-->
<h1> 字体样式标签 </h1>
粗体: <strong>i love you</strong>
斜体: <em>i love you</em><br/>
<!-- 特殊符号 空格: 大于:> 小于:< 版权符号:© © -->
空 格:<br/>
空 格:<br/>
><br/>
<<br/>
©版权所有Dave <br/>
</body>
</html>
图像标签
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>图像标签学习</title>
</head>
<body>
<!--img 学习
src:图片地址(必填)
相对地址,绝对地址
../ -上一级目录
alt : 图片名字(必填)
title 鼠标悬停提示的额文字
width 图像宽度
height 图像高度
-->
<h1>飞凡汽车</h1>
<img src="../resources/image/1.jpg" alt="飞凡汽车" title="悬停文字" width="300" height="300">
</body>
</html>
链接标签
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>链接标签学习</title>
</head>
<body>
<!--a标签
href:必填,表示要跳转到哪个页面
target:表示窗口在哪里打开
_blank 在新标签打开
_self 在自己的网页中打开
-->
<!--使用name 做为标记-->
<a name="top">顶部</a><br/>
<a href="#down">回到底部</a><br/>
<a href="1.我的第一个网页.html" target="_blank" >点击我跳转到网页一</a><br/>
<a href="https://www.baidu.com" target="_self">点击我跳转到百度</a><br/>
<!--图像超链接-->
<a href="1.我的第一个网页.html" >
<img src="../resources/image/1.jpg" alt="飞凡汽车" title="悬停文字" width="300" height="300">
</a>
<p>
<a href="1.我的第一个网页.html" >
<img src="../resources/image/1.jpg" alt="飞凡汽车" title="悬停文字" width="300" height="300">
</a>
</p>
<p>
<a href="1.我的第一个网页.html" >
<img src="../resources/image/1.jpg" alt="飞凡汽车" title="悬停文字" width="300" height="300">
</a>
</p>
<p>
<a href="1.我的第一个网页.html" >
<img src="../resources/image/1.jpg" alt="飞凡汽车" title="悬停文字" width="300" height="300">
</a>
</p>
<p>
<a href="1.我的第一个网页.html" >
<img src="../resources/image/1.jpg" alt="飞凡汽车" title="悬停文字" width="300" height="300">
</a>
</p>
<!--锚链接
1.需要一个锚标记
2.跳转到标记
-->
<a href="#top">回到顶部</a><br/>
<a name="down">down</a><br/>
<!--功能性链接
邮件链接:mailto:
-->
<a href="mailto:123456789@qq.com">点你联系我</a><br/>
</body>
</html>
列表
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>列表学习</title>
</head>
<body>
<!--有序列表 ol:order list 1,2,3,4,5,6 学号,题号-->
<ol>
<li>Java</li>
<li>Python</li>
<li>运维</li>
<li>前端</li>
<li>C/C++</li>
<li>测试</li>
</ol>
<hr/>
<!--无序列表 ...... 导航,侧边栏 -->
<ul>
<li>Java</li>
<li>Python</li>
<li>运维</li>
<li>前端</li>
<li>C/C++</li>
<li>测试</li>
</ul>
<hr/>
<!--自定义列表
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>
<dd>北京</dd>
</dl>
</body>
</html>
表格
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表格学习</title>
</head>
<body>
<!--表格table
行 tr table rows
列 td
border 边框
colspan="4" 跨四列
rowspan="2" 跨两行
-->
<table border="1px">
<tr>
<!--colspan 跨列-->
<td colspan="4">1-1</td>
</tr>
<tr>
<!--rowspan 跨行-->
<td rowspan="2">2-1</td>
<td>2-2</td>
<td>2-3</td>
<td>2-4</td>
</tr>
<tr>
<td>3-1</td>
<td>3-2</td>
<td>3-3</td>
</tr>
</table>
</body>
</html>
媒体元素
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>媒体元素学习</title>
</head>
<body>
<!--音频和视频
src = :资源路径
controls :控制条
autoplay : 自动播放
-->
<video src="../resources/video/测试视频.mp4" controls autoplay></video>
<audio src="../resources/audio/测试音频.mp3" controls autoplay></audio>
</body>
</html>
页面结构分析
header:标题头部区域内容(用于页面和页面中的一块区域)
footer:标记脚部区域的内容(用于整个页面或页面的一块区域)
section:web页面中一块独立的区域
article:独立的文章内容
aside:相关内容或应用(常用于侧边栏)
nav:导航类辅助内容
<!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 内联框架
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>内联框架iframe</title>
</head>
<body>
<!-- iframe 内联框架-->
<iframe src="//player.bilibili.com/player.html?aid=55631961&bvid=BV1x4411V75C&cid=97256834&page=1"
scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true">
</iframe><br/>
<iframe src="https://www.baidu.com" frameborder="0" width="1000px" height="800px"></iframe>
</body>
</html>
表单
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册</title>
</head>
<body>
<!--表单form
action : 表单提交的位置,可以是网站,也可以是一个请求处理地址
method : post; get 提交
get方式提交:可以在url中看到提交的信息,不安全,高效
post:比较安全,传输大文件
-->
<h1>注册</h1>
<form action="1.我的第一个网页.html" method="get">
<!--文本输入框
input type="text"
value:初始值
maxlength="8" 内容长度限制
size="50" 文本框长度
type="submit" 提交
type="reset" 重置 -->
<p>名字:<input type="text" name="username" value="姓名" maxlength="8" size="50"></p>
<!--密码框:input type="password" name="pwd" -->
<p>密码:<input type="password" name="pwd"></p>
<!-- 单选框标签
input type="radio"
value 单选框的值
name 表示组,单选框必须组名一样
-->
<p>性别:
<input type="radio" value="boy" name="sex" checked/>男
<input type="radio" value="girl" name="sex"/>女
</p>
<!--多选框 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/1.jpg">
</p>
<p>
<input type="submit">
<input type="reset" value="清空表单">
</p>
<!-- 列表框 下拉框
-->
<p>国家
<select name="列表名称">
<option value="china">中国</option>
<option value="us">美国</option>
<option value="eth" selected>瑞士</option>
<option value="p">日本</option>
<option value="i">印度</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="10" step="10">
</p>
<!--滑块-->
<p>音量:
<input type="range" min="0" max="100" name="yinliang" step="2">
</p>
<!--搜索-->
<p>搜索:
<input type="search" name="search">
</p>
<!--只读 readonly-->
<p>名字:<input type="text" name="username" value="Dave" maxlength="8" size="50" readonly></p>
<!--隐藏 hidden -->
<p>密码:<input type="password" name="pwd" hidden></p>
<!--禁用 disabled-->
<p>性别:
<input type="radio" value="boy" name="sex" disabled />男
<input type="radio" value="girl" name="sex"/>女
</p>
<!--增强鼠标可用性 for id-->
<p>
<label for="mark">你点我试试</label>
<input type="text" id="mark">
</p>
<!--提示 placeholder-->
<p>名字:<input type="text" name="username" placeholder="请输入用户名"></p>
<!--非空判断 required-->
<p>名字:<input type="text" name="username" placeholder="请输入用户名" required></p>
<!--正则表达式 pattern-->
<p>自定义邮箱:
<input type="text" name="diyemail" pattern="/^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/" ></p>
<p>
<input type="submit">
<input type="reset" value="清空表单">
</form>
</body>
</html>