语义化标签
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>新增语义块</title>
</head>
<body>
<header>
<h1>
这是整个页面的标题
</h1>
</header>
<section>
<header>
<hgroup>
<h2>文章主标题</h2>
<h3>文章次标题</h3>
</hgroup>
</header>
<mark>圣诞节</mark>
<footer>
阿肯色付家坡安慰人覅设计的饭卡v啊季节的罚款累计市场v卡拉谁你的v卡就是快乐的骄傲的进来卡手机对方
</footer>
<figure>
<img src="./1.jpg" alt="dog" />
<figcaption>
<p>
dog
</p>
</figcaption>
</figure>
</section>
<article class="">
开发坚实的了罚款交按时贷款放敬爱来速度开发骄傲的可怜十分加阿斯顿开了分敬爱了开始的附近啊快乐圣诞节发啦快速的加法快乐圣诞节
</article>
<aside class="">
这是article的修饰部分
<nav>
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
</nav>
</aside>
<small style="display:block;width:800px;margin:200px auto;text-align:center">©阿里妈妈MUX, powered by alimama THX.<br>
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源,商业媒体及纸媒请先联系:sangxing#taobao.com</small>
</body>
</html>
智能表单
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>智能表单1</title>
</head>
<body>
<form class="" method="get"
novalidate
>
<label for="in1">链接到指定input</label><input id="in1" type="email" name="name" value="">
<br>
<input type="url" name="name" value="">
<br>
<input type="number" name="name" value="2" step="2">
<br>
<input type="range" name="range" value="30" min="0" max="100">
<br>
<input type="submit" name="name" value="提交">
</form>
</body>
</html>
智能表单二
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>智能表单2</title>
<style media="screen">
input {
margin: 20px;
}
</style>
</head>
<body>
<form class="" action="index.html" method="get">
<br>
<input type="date" name="name" value="">
<br>
<input type="month" name="name" value="">
<br>
<input type="week" name="name" value="">
<br>
<input type="time" name="name" value="">
<br>
<input type="datetime-local" name="name" value="" autofocus>
<br>
<input type="submit" name="name" value="提交" formaction="">
<br>
<input type="email" name="name" value="" autocomplete="off">
<br>
<input name="name" list="list1" placeholder="请输入关键词" disabled="true">
<datalist id="list1">
<option value="v1">option1</option>
<option value="v2">option2</option>
</datalist>
<input type="file" accept="audio/x-waw" required multiple/>
</form>
</body>
</html>
audio
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>audio音频</title>
</head>
<body>
<audio src="./1.mp3" controls autoplay loop muted>
<source src="./1.mp3">
</audio>
</body>
</html>
video
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>video视频文件</title>
</head>
<body>
<video src="./1.mp4" controls muted loop poster="./1.jpg">
</video>
</body>
</html>