HTML
第一个HTML界面
<!---->
<!DOCTYPE html>
<html lang="en">
<head>
<!--meta标签 进行描述 -->
<meta charset="UTF-8">
<meta name="keywords" content="java">
<meta name="decription" content="学习HTML">
<title>第一个HTML文件</title>
</head>
<body>
Hello,World
</body>
</html>
小结:meta 搜索引擎化
//关键字 //描述基本标签
<!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>
<hr>
<h1>段落标签</h1>
<p>你好</p>
<p>你不好好</p>
<p>你看</p>
<p>你好</p>
<hr>
<h1>换行标签</h1>
UI黑奴<br/>
UI黑奴<br/>
UI黑奴<br/>
<hr>
<h1>字体</h1>
<strong>加粗</strong><br>
<em>斜体</em>
<hr>
<h1>注释与特殊符号</h1>
>大于</br>
<小于</br>
涅米 怎么回事 </br>
©
</body>
</html>
列表
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>列表</title>
</head>
<body>
<!--有序列表-->
<ol>
<li>鸣人</li>
<li>佐助</li>
<li>卡卡西</li>
<li>小樱</li>
</ol>
<hr/>
<!--无序列表-->
<ul>
<li>鸣人</li>
<li>佐助</li>
<li>卡卡西</li>
<li>小樱</li>
</ul>
<!--自定义列表-->
<dl>
<dt>第七组</dt>
<dd>鸣人</dd>
<dd>佐助</dd>
<dd>卡卡西</dd>
<dd>小樱</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 border="1px">
<tr>
<td colspan="3" align="center">学生成绩</td>
</tr>
<tr>
<td rowspan="2">狂神</td>
<td>语文</td>
<td>100</td>
</tr>
<tr>
<td>数学</td>
<td>100</td>
</tr>
<tr>
<td rowspan="2">秦疆</td>
<td>语文</td>
<td>100</td>
</tr>
<tr>
<td>数学</td>
<td>100</td>
</tr>html
</table>
</body>
</html>
图像标签
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>图像标签</title>
</head>
<body>
<!--
src:来源
alt:加载图片失败时出现的文字
title:鼠标悬停时出现的文字
width:宽度(强行压缩,显示全部)
height:高度(强行压缩,显示全部)
-->
<img src="../resources/image/t1.png" alt="图片" title="樱花树下" width="150px" height="300px">
<a href="超链接标签.html#down">跳转</a>
</body>
</html>
媒体元素
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>媒体元素</title>
</head>
<body>
<video src="../resources/video/P28 特朗普海阔天空.mp4" controls autoplay></video>
<audio src="../resources/audio/AniFace - 夜、萤火虫和你.mp3" controls autoplay></audio>
</body>
</html>
controls :控制器(暂停,音量,进度条,全屏)
autoplay:自动播放
超链接
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>超链接标签</title>
</head>
<body>
<a name="top"></a> <br/>
<!--超链接标签-->
<a href="1.第一个HTML文件.html" target="_self">第一个界面</a> <br/>
<a href="https://www.baidu.com" target="_blank">百度</a> <br/>
<p>
<a href="图像标签.html">
<img src="../resources/image/t1.png" alt="图片" title="樱花树下" >
</a>
</p><p>
<a href="图像标签.html">
<img src="../resources/image/t1.png" alt="图片" title="樱花树下" >
</a>
</p><p>
<a href="图像标签.html">
<img src="../resources/image/t1.png" alt="图片" title="樱花树下" >
</a>
</p>
<!--锚链接-->
<a href="#top">跳到上面</a>
<a name="down"></a>
<!--功能性链接-->
<a href="mailto:1830560034@qq.com">邮箱联系我</a>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=&site=qq&menu=yes">
<img border="0" src="http://wpa.qq.com/pa?p=2:1830560034:52" alt="快加我,好吗" title="快加我,好吗"/>
</a>
</body>
</html>
锚链接
<a name="top"></a>
<a href="#top"></a>
邮箱
<a href="mailto:1830560034@qq.com">邮箱联系我</a>
QQ推广
页面结构
<!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>
内联框架
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>内联框架</title>
</head>
<body>
<!--iframe是内联框架,他可以有自己的src,也可以通过链接中传输src来显示-->
<iframe src="" frameborder="0" name="hello" width="1800px" height="600px"></iframe>
<a href="https://www.baidu.com" target="hello">跳转</a>
<!--<iframe src="//player.bilibili.com/player.html?aid=55631961&bvid=BV1x4411V75C&cid=97257967&page=11"-->
<!-- scrolling="no"-->
<!-- border="0"-->
<!-- frameborder="no"-->
<!-- framespacing="0"-->
<!-- allowfullscreen="true"> </iframe>-->
</body>
</html>
登录注册
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册</title>
</head>
<body>
<h2>登陆注册</h2>
<!--登陆注册必须在表单标签里面
action:提交到的页面,也可以做后续处理
method:提交方法
get:快速,但是不安全,提交的消息会出现在网址上
post:安全,信息不会显示出来,可以传输大文件
readonly:只读
hidden:隐藏
disabled:禁用
placeholder:提示消息(可输入文本框)
required:非空(可输入文本框)
pattern:正则表达式
-->
<form action="1.第一个HTML文件.html" method="get">
<!-- value 默认值 maxlength文本长度 size文本框长度 -->
<p>账号:<input type="text" name="username" maxlength="8" size="30" placeholder="请输入账号" required></p>
<p>密码:<input type="password" name="pwd" value="123456" hidden required></p>
<p>性别:
<input type="radio" value="boy" name="sex" checked disabled>男
<input type="radio" value="girl" name="sex">女
</p>
<p>爱好:
<input type="checkbox" value="跳舞" name="hobby">dance
<input type="checkbox" value="唱歌" name="hobby" checked>sing
<input type="checkbox" value="游戏" name="hobby">play
</p>
<!-- 点击图片按钮也会跳转-->
<p>按钮
<input type="button" name="btn" value="按钮">
图片按钮
<!-- <input type="image" src="../resources/image/t1.png">-->
</p>
<!-- 下拉框 -->
<p>下拉框:
<select name="下拉框">
<option value="china">中国</option>
<option value="amarica">美国</option>
<option value="franch" selected>法国</option>
<option value="grence">德国</option>
</select>
</p>
<!-- 文本域 -->
<p>文本域
<textarea name="文本域" cols="30" rows="10">文本与内容</textarea>
</p>
<!-- 文件选择-->
<p>请选择文件
<input type="file" name="文件">
</p>
<!-- 邮箱验证-->
<p>邮箱:
<input type="email" name="email" pattern="^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$">
</p>
<!-- URL验证-->
<p>URL验证
<input type="url" name="url">
</p>
<!-- 数字-->
<p>数字
<input type="number" name="num" max="100" min="0" step="10" maxlength="3">
</p>
<!--滑块 -->
<p>滑块
<input type="range" name="range" max="100" min="0" step="5">
</p>
<!-- 搜索框-->
<p>搜索
<label>点我<input type="search" name="search"></label>
<input type="search" name="search">
</p>
<!-- 增强鼠标可用性-->
<p>
<label for="mark">点我</label>
<input type="text" id="mark">
</p>
<p>
<input type="submit">
<input type="reset" value="清空">
</p>
</form>
</body>
</html>