1 Web架构
CDN stands for “Content Delivery Network” and the technology provides a way of serving assets such as static HTML, CSS, Javascript, and images over the web much faster than serving them from a single origin server. It works by distributing the content across many “edge” servers around the world.
https://medium.com/videoblocks-engineering/web-architecture-101-a3224e126947
2 html 运行过程
HTML的结构包括头部(head),主体(body)两部分,其中头部描述浏览器所需的信息,而主体部分则包含所要说明的具体内容。
https://www.jianshu.com/p/8398221d79ed
3 Html Inline vs block element
A block-level element always starts on a new line.A block-level element always takes up the full width available (stretches out to the left and right as far as it can).A block level element has a top and a bottom margin, whereas an inline element does not.
An inline element does not start on a new line.An inline element only takes up as much width as necessary.
https://www.w3schools.com/html/html_blocks.asp
4 Html 语义元素( semantic element )
A semantic element clearly describes its meaning to both the browser and the developer.Examples of non-semantic elements:
and - Tells nothing about its content.Examples of semantic elements: