A tutorial study notes (a): 04, HTML basis

Accompany the leadership to eat, drink all the leaders lie. Then there are people who take everyone home, except I did not, then walked to the roadside a taxi, the wind blows, could not be, until the spit clean, fresh later, already four o'clock, and touch phones , SMS zero, zero caller ID, only the tree full support of my five hours. . . .

First, the concept

HTML is HTML, not a programming language, markup language is a set of markup tags, use markup tags to describe web pages, HTML documents also called web pages

Second, the label

The label is usually called HTML tags are keywords surrounded by angle brackets, for example, usually in pairs, such as and , the first tag is a start tag, the second tag is a tag end

Three, web browser

Web browser (Google Chrome, IE, Firefox) is to read HTML files

1, we create a new html file with Notepad open, enter the following:

<html>

<head>

<title>hello word</title>

</head>

<body>

<h1>这里是标题</h1>

<p>这里是段落</p>

</body>

</html>

2, using a web browser opens to display the following
Here Insert Picture Description

3. Right-click on the page, view the source code, and we found it in Notepad to write daily as
Here Insert Picture Description
four special characters

If the direct input <>, it will error, so we need to replace special symbols with special characters

For example: "<", ">" represents <>

 On behalf of spaces

<h1>这里&lt;是&gt;标题</h1>

<p>这里是&nbsp;&nbsp;&nbsp;段落</p>

Here Insert Picture Description
Fifth, the label introduced
Here Insert Picture Description
such as:

<head>

<meta charset="utf-8">  <!--定义网页编码格式-->

<title>hello word</title>

</head>

Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Here Insert Picture Description
Prohibit illegal peril
welcome public attention number: web security tool library
Here Insert Picture Description

Published 114 original articles · won praise 5 · views 10000 +

Guess you like

Origin blog.csdn.net/weixin_41489908/article/details/104320560