The structure of the first Knowledge html-page
--Brother Yue
Surfing the web was once a fashionable thing for young people, a young man of the 21st century. If you do not understand what is online surfing, what is the online shopping that basic and friends around colleagues lost a good way of communication. All of this is based on the rapid development of the front-end technology, from the beginning of the monotonous basic Web page to the now cool gorgeous page effect. The foundation of HTML is a lot of waves in history.
It is well known that when some new things arise or develop, they are more or less inseparable from a standard constraint. The most important job is to develop web specifications, because the importance of the web (both in terms of scope and investment), so that it should not be a single organization to control its future, so the world wide play a member of the role of the Organization, by the members of the total Wong composition. What is to be said here is the "W3school" online tutorial, but with the passage of time, technology iteration update. Bloggers are still more inclined to "MDN" in this online tutorial. I wrote here that the idea of the article is confined to the outline, as is the original self-taught web process to organize it. The blog is purely self-learning experience, work sentiment and the collation of notes,
How to publish a recommendation standard?
In the process of publishing a new standard, the specification is gradually established as the recommended standard by a simple concept through the following rigorous procedures.
1, the general agreement received a submission
2. Published a record by the press
3. Create a workgroup from the consortium
4. Publication of a draft work by the publishers
5, by the publication of a candidate recommendation
6. A proposed recommendation issued by the publisher
7. Recommended by the Publishers
HTML Development history:
Hypertext Markup Language (first edition)-published as an Internet Engineering Working Group (IETF) in June 1993 (not standard): HTML 2.0--released as RFC 1866 in November 1995, declared obsolete after RFC 2854 was released in June 2000 HTML 3.2--January 14, 1997, the recommended standard HTML 4.0--December 18, 1997, the recommended standard HTML 4.01 (small improvement)--December 24, 1999, the recommended standard HTML 5--20 October 28, 14, the recommended standardEditing of HTML:Regardless of the front end or back end, when writing code. Always inseparable from a variety of desirable editors, here simply say the way HTML code is written. The first: Write code through Notepad the second type: editor (SUBLIMETEXT3, Visual Studio Code, WEBSTORM-10)syntax rules for HTML:1, the entire page is made up of labels 2, HTML tags generally for the double-label principle, that is, the start tag and the closing tag constitute a pair of tags. (structure of HTML:This is where the infrastructure is written below, and the structure is explained by stepwise analysis later.
1 <!DOCTYPE HTML>//Document Type HTML2 <HTML>//html start tag3 <Head>//Page header start tag4 <MetaCharSet= "UTF-8">//Page text encoding format5 <title>Document</title>//page title bar6 </Head>//Page Header closure label7 <Body>//page content start tag8Write Content Location9 </Body>//page content closing tagsTen </HTML>//html closed Label
The structure of the first Knowledge html-page