02, HTML Introduction

Introduction to HTML

Examples are as follows:

Living Example:

<! DOCTYPE html> declaration for the HTML5 document

<Html> element is the root element of an HTML page

<Head> element of the document contains the element (Meta) data, such as the <meta charset = "utf-8"> page encoding format is defined utf-8.

<Title> element describes the document's title.

<Body> element contains the content of the page visible.

<H1> element defines a headline.

<P> element defines a paragraph.

To sum up : HTML is a language used to describe web pages, it is a markup language, not a programming language, a markup language is a set of markup tags (markup tag), HTML markup tags to describe web pages use, HTML document contains HTML tags and text content, HTML tags also known as web pages.

 

Guess you like

Origin www.cnblogs.com/ZXJ111/p/11359829.html