Something Serious of HTML
这一章节主要讲了 HTML 的历史,还有如何使得 HTML 更加规范。
HTML's Brief History
在 HTML4 之前,structure 和 presentation 没有分开,并且需要同时为 Internet Explorer 和 Netscape Browser 做两个网页,之后在 World Wide Corsortum 制定了统一的 standard of ONE HTML.
HTML5 是一种 living standard 的 HTML,这种 HTML 相比较于 HTML4.01 又有多发展,总结起来为 threefold:
- More useful and powerful attributes
- Can make standard Web Applications
- The HTML specification is a lot more robust than the previous versions.
如何使得 HTML 更加规范
- 首先,在文件 very top 的地方,加上
<!doctype html>
- 接着,应该有
<html>
- 然后是
<head>
部分,<head>
一定要有<titile>
,同时<style>
和 也必须在里面。 - 和应该分开。
其他知识
解析:<meta charset="utf-8">
charset 是 meta 这个 element 的attribute,它的任务是 tell the browser character encoding that is used for web page.
Most web pages use utf-8 encoding for their HTML files.
Use Validator to check pages