Mind Mapping Analysis HTTP front-end composition
Full text Overview
650) this.width=650; "src=" Https://s3.51cto.com/wyfs02/M00/97/C5/wKiom1kyrIHymsCgAAA4_iqc_LI169.png "title=" Image 1-top.png "width=" 480 "height=" 421 "border=" 0 "hspace=" 0 "vspace=" 0 "style=" width:480px;height:421px; "alt=" Wkiom1kyrihymscgaaa4_iqc_li169.png "/>
This article is divided into three parts: a front-end composition, an HTTP protocol, an HTTP server application. HTTP application according to my own understanding is divided into front-end applications and back-end applications, so I wrote the front-end composition and the HTTP server application two chapters, interspersed with a chapter of the HTTP protocol, the main introduction of the HTTP protocol.
2. Front-End composition
650) this.width=650; "src=" Https://s2.51cto.com/wyfs02/M01/97/C5/wKiom1kyroCxiyANAAA8IbCP2_I384.png "title=" Image 3-font-section.png "width=" 480 "height=" 202 "border=" 0 "hspace=" 0 "vspace=" 0 "style=" width:480px;height:202px; "alt=" Wkiom1kyrocxiyanaaa8ibcp2_i384.png "/>
The front end here mainly refers to the Web front end, that is, the Web page. The front-end section is divided into three parts: Html,css,js. HTML is responsible for the layout of the page structure and static content, CSS is called hierarchical style sheet, mainly page layout, add style, beautify the function of the page; JS is a scripting language that enables dynamic page functions. The front-end industry has a chapter diagram is a good summary of the relationship between the three. 650) this.width=650; "src=" Https://s2.51cto.com/wyfs02/M01/97/C6/wKiom1kysUmg2AFeAACHQ_O4fsk192.png "title=" Font.png "width=" 480 "height=" 296 "border=" 0 "hspace=" 0 "vspace=" 0 "style=" width:480px;height:296px; "alt=" Wkiom1kysumg2afeaachq_o4fsk192.png "/>
HTML is a Hypertext Markup language that creates a static page content of a Web page and defines the overall structure of the page. It's written like this.
650) this.width=650; "src=" Https://s5.51cto.com/wyfs02/M01/97/C8/wKioL1kysq2Tfsa7AAKu7KQjV1A975.gif "title=" Html_ Tutorial.gif "width=" 480 "height=" 676 "border=" 0 "hspace=" 0 "vspace=" 0 "style=" width:480px;height:676px; "alt=" Wkiol1kysq2tfsa7aaku7kqjv1a975.gif "/>
CSS makes the Web page style and typesetting, it defines the form of the Web page, through the definition of the page color, background, page layering, font, image placement and so on, such as the shape.
650) this.width=650; "src=" Https://s3.51cto.com/wyfs02/M00/97/C7/wKiom1kytFfDHO_uAACVGy1jTn4309.png "title=" Css-shade.svg.png "width=" 480 "height=" 545 "border=" 0 "hspace=" 0 "vspace=" 0 "style=" width:480px;height:545px; "alt=" Wkiom1kytffdho_uaacvgy1jtn4309.png "/>
JavaScript is an object-oriented dynamic language that defines the behavior of a page. What do you mean, a simple understanding is that the page can move, that is, dynamic page. JavaScript is very powerful, not only to create dynamic pages, and even to develop a lot of very interesting page games, it is very popular nowadays.
Because I am not a front-end development engineer, if there is inappropriate, but also please advise.
Http://www.w3school.com.cn/is a good front-end development learning platform that, if interested, can stamp the previous link. The front-end section is described in the following chapter, which describes the HTTP protocol.
This article is from the "complete more important than perfect" blog, please be sure to keep this source http://powermichael.blog.51cto.com/12450987/1931982
Mind Mapping analysis HTTP front end composition