HTML5的通用格式
<!doctype html>
<html>
<!--head-->
<head>
<meta charset="utf-8">
<title>the title of document</title>
<link rel="stylesheet" href="main.css">
<script>
</script>
</head>
<!--body-->
<body>
the content of document
</body>
</html>