宣告網頁採用HTML5標準
<!DOCTYPE html>
基本樣版
<html>
<head>
<meta charset="UTF-8">
<title>here is page title</title>
</head>
<body>
<p>here is page content</p>
</body>
</html>
附註:
<!DOCTYPE> 是用來宣告網頁所採用的HTML標準。
XHTML5的宣告方式為:
<?xml version="1.0" encoding="UTF-8">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta>
<title>here is page title</title>
</head>
<body>
<p>here is page content</p>
</body>
</html>
沒有留言:
張貼留言