一般網頁如上列所述即可為正常網頁..
由於瀏覽器的設定(版本不一樣)不大相同..不同電腦開出的畫面..有的文字正常..有的文字卻成亂碼..
因此最好再加入以下語法指定文字編碼作用
Unicode
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
繁體中文
<meta http-equiv="Content-Type" content="text/html; charset=big5">
簡體中文
<META http-equiv=Content-Type content="text/html; charset=gb2312">
範例如下
==================================
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>這是標題</title>
</head>
<body>
這裡是本文區
</body>
</html>