header:头部
nav:导航
section:章节
article:文章
aside:定义页面内容之外的内容。
footer:底部
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style type="text/css">
			* {
				text-align: center;
				margin: 0;
				padding: 0;
				line-height: 100px;
				font-size: 30px;
			}
			
			header {
				width: 800px;
				height: 100px;
				background: skyblue;
			}
			
			nav {
				width: 800px;
				height: 100px;
				background: red;
			}
			
			section {
				width: 600px;
				height: 300px;
				background: green;
				float: left;
			}
			
			article {
				width: 600px;
				height: 100px;
				background: deepskyblue;
			}
			
			footer {
				width: 800px;
				height: 100px;
				background: firebrick;
				clear: both;
			}
			
			aside {
				width: 200px;
				height: 300px;
				float: left;
				background: darkmagenta;
			}
			
			div {
				width: 200px;
				height: 100px;
				background: blue;
			}
		</style>
	</head>
	<body>
		<header>header</header>
		<nav>nav</nav>
		<section>
			<h1>section</h1>
			<article>article</article>
			<article>article</article>
		</section>
		<aside>
			<h1>aside</h1>
			<div>widget</div>
			<div>widget</div>
		</aside>
		<footer>footer</footer>
	</body>
</html>
	 	
	 	INSERT INTO TABLE_NAME (column1, column2, column3,...columnN)] VALUES (value1, value2, value3,...valueN);
DELETE FROM table_name WHERE [condition];
UPDATE table_name SET column1 = value1, column2 = value2...., columnN = valueN WHERE [condition];
SELECT column1, column2, columnN FROM table_name;