Comprehensive understanding of HTML basic structure

Comprehensive understanding of HTML basic structure

Introduction to HTML

HyperText Markup Language: Hypertext Markup Language

HyperText: Hypertext (text + pictures + video + audio + links)

Markup Language:

Three elements of a website

Image, hyperlink, text

HTML Basic Structure

XML/HTML CodeCopy content to clipboard
  1. < html >   
  2.      < head >   
  3.          < title > Document </ title >   
  4.      </ head >   
  5.      < body >   
  6. I am mossbaoo!
  7.      </ body >   
  8. </ html >   

Standard HTML tags for web pages

1. HTML document declaration: <!DOCTYPE HTML>

2. Page title: <title>~</title>

3. Page encoding: <meta charset="utf-8" />

UTF-8 is a multi-language encoding (recommended)

gb2312 is the simplified Chinese encoding


4. Page keywords: <meta name="keywords" content="Keyword 1,Keyword 2,…" />

Main content of the page: <meta name="description" content="Content introduction" />

Note: The meta tag is an auxiliary tag of the HTML language, usually used to optimize search engines. It is located in the head of the HTML document.

Generate the initial structure of the HTML document

1. HTML5 standard structure: html:5+Tab key or !+Tab key

The generated results are as follows

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html >   
  2. < html   lang = "en" >   
  3. < head >   
  4.      < meta   charset = "UTF-8" >   
  5.      < title > Document </ title >   
  6. </ head >   
  7. < body >   
  8.        
  9. </ body >   
  10. </ html >   

2. HTML4 transitional structure: html:xt+Tab key

The generated results are as follows

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >   
  2. < html   xmlns = "http://www.w3.org/1999/xhtml"   xml:lang = "en" >   
  3. < head >   
  4.      < meta   http-equiv = "Content-Type"   content = "text/html; charset=UTF-8" >   
  5.      < title > Document </ title >   
  6. </ head >   
  7. < body >   
  8.        
  9. </ body >   
  10. </ html >   

Note on HTML tags:

• HTML elements consist of start tags and end tags.

• The text enclosed between the start and end tags is the content of the element.

• HTML tags must have a beginning and an end. If it is a tag with no content (empty tag), use /> to end it.

• Tag names are not case sensitive, but in XHTML tag names must be lowercase.

• Tags have attributes, which are used to represent the properties and characteristics of the tags. Attributes are specified in the opening tag.

The above comprehensive understanding of the basic structure of HTML is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/mossbaoo/archive/2016/07/31/5724065.html

<<:  Implementing a simple Christmas game with JavaScript

>>:  Pure CSS and Flutter realize breathing light effect respectively (example code)

Recommend

Quickly learn MySQL basics

Table of contents Understanding SQL Understanding...

Getting Started with Front-End Vue Unit Testing

Table of contents 1. Why do we need unit testing?...

MySQL installation tutorial under Linux centos7 environment

Detailed introduction to the steps of installing ...

Docker nginx + https subdomain configuration detailed tutorial

Today I happened to be helping a friend move his ...

Detailed steps to start the Django project with nginx+uwsgi

When we develop a web project with Django, the te...

A record of the pitfalls of the WeChat applet component life cycle

The component lifecycle is usually where our busi...

Summary of two methods to implement vue printing function

Method 1: Install the plugin via npm 1. Install n...

Implementing a puzzle game with js

This article shares the specific code of js to im...

Centos7.5 installs mysql5.7.24 binary package deployment

1. Environmental preparation: Operating system: C...

js to achieve a simple carousel effect

This article shares the specific code of js to ac...

Tomcat Nginx Redis session sharing process diagram

1. Preparation Middleware: Tomcat, Redis, Nginx J...

Summary of knowledge points about events module in Node.js

Through the study and application of Node, we kno...

Analysis of the Poor Performance Caused by Large Offset of LIMIT in MySQL Query

Preface We all know that MySQL query uses the sel...