HTML5新增语义化标签(HTML5)

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML5新增语义化标签</title>
<style>header {
height: 120px;
background-color: skyblue;
border-radius: 15px;
width: 800px;
margin: 15px auto;
}

nav {
height: 120px;
background-color: skyblue;
border-radius: 15px;
width: 800px;
margin: 15px auto;
}

section {
width: 500px;
height: 300px;
background-color: gray;
}</style>
</head>

<body>

<header>头部标签</header>
<nav>导航栏标签</nav>
<section>某个区域</section>
</body>

</html>