The front end --- HTML Basics

1. What is HTML

HTML (Hypertext Marked Language) called HTML, is a logo of the language.

  • Text: As the name suggests is a text, formatted text.
  • Hypertext: a way of organizing information, it is the method by hyperlink in the text of text, graphics and other information associated with the media. These interrelated information media may be in the same text, it could be other documents, or geographically dispersed files on a remote computer. This way of organizing information will be distributed in different locations of information resources to connect with random way for people to find, easy retrieval of information provided.
  • Markup Language is a set of markup tags
    HTML uses markup tags to describe web pages
    HTML documents contain HTML tags and text content of
    an HTML document also called web pages
  • The tag
  • After the page opens, how to load the page rendering is
    the browser (IDEA), load and read the HTML code -> parse each tab -> generates a corresponding effect

History 2.HTML development

HTML is used to mark information to show how the Web and other characteristics of a grammatical rule, which was originally invented in 1989 by the GERN of Tim Berners-Lee.

  • HTML 1.0: As the Internet Engineering Task Force (IETF) working draft released in June 1993.
  • HTML 2.0: November 1995 as RFC 1866 release, after the release in June 2000 was declared obsolete.
  • HTML 3.2: January 14, 1997, W3C Recommendation.
  • HTML 4.0: December 18, 1997, W3C Recommendation.
  • HTML 4.01 (minor modifications): December 24, 1999, W3C Recommendation.
  • XHTML1.0 2000 years
  • XHTML2.0 change is too large, too costly learning
  • HTML 5 (the latest version): HTML5 is recognized as the next generation of Web language, which greatly enhanced Web capabilities in rich media, rich content and rich applications, and will eventually change the mobile Internet has been hailed as a major force behind.

HTML Advantage

  • All well-known browser vendors support!
    • Microsoft
    • Google
    • apple
    • Opera
    • Mozilla firefox
    • Many miscellaneous browser does not support HTML5
  • Market demand
    • The market needs a uniform standard :( expand) the nature of technology: money (Development)
    • Web compatibility issues. Bug fixes require a lot of time
  • Cross-platform (browser) B / S
    • Naturally occurring, because it is a B / S to develop PC, mobile stations, and so on are all natural support! Hypertext markup language can be used on a wide range of platforms.

3.W3C standard

World Wide Web Consortium: a standard not a standard, but rather a collection of standards. The main page consists of three parts: structure (Structure), performance (Presentation) and behavior (Behavior). World Wide Web Consortium was founded in 1994, it is the most authoritative Web technology and influential international neutrality of technology standards bodies.

W3C Standards

  • Structured standard language (XHTML, HTML)
  • Performance standard language (CSS)
  • Standards of conduct language (Dom, ECMAScript standard ==> JavaScript)
    Many browsers still in the ES5 specification, but the developers are using the ES6 specification
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>静夜思</title>
</head>
<body>
<h1>静夜思</h1>
<em>朝代:唐代</em> &nbsp;&nbsp;&nbsp; 作者: <strong>李白</strong> <br/>
<hr/>
<p>
    床前明月光, <br/>
    疑是地上霜, <br/>
    举头望明月, <br/>
    低头思故乡。<br/>
</p>
</body>
</html>

4. common front-end development tools

  • notebook
  • Notepad++
  • Sublime
  • VScode (front-end specialty)
  • WebStorm (front-end specialty) IDEA
  • HBuilder (Professional)
    Not the best tool, only the most appropriate
    Technology no ranking points, only the use of technology level of the other people
Published 39 original articles · won praise 1 · views 554

Guess you like

Origin blog.csdn.net/love_to_share/article/details/103570832
Recommended