### 頁面結構
```
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8" />
<title>playfulhd.com</title>
</head>
<body></body>
</html>
```
### 完整示例:
```
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8" /> <!-- 聲明編碼格式,也避免了亂碼 -->
<title>playfulhd.com</title> <!-- 網頁標題 -->
<link link="./demo.css"></link> <!-- 加載外部css文件 -->
<script src="./demo1.js"></script> <!-- 加載外部js文件 -->
<style>
<!-- 內部css樣式 -->
</style>
<script >
<!-- 內部js樣式 -->
</script >
</head>
<body>
<!-- 寫入內容 -->
<div>
<span>主站:</span>
<span>playfulhd.com</span>
</div>
<!-- 加載外部js文件 -->
<script src="./demo2.js"></script>
<!-- 內部js樣式 -->
<script >
window.onload = function(){
console.log("onload ");
}
</script >
</body>
</html>
```