Home  >  Article  >  Web Front-end  >  HTML knowledge that must be learned for front-end development

HTML knowledge that must be learned for front-end development

高洛峰
高洛峰Original
2017-03-10 11:53:431082browse

This article mainly introduces the HTML knowledge that must be learned for front-end development, and introduces the basic technologies that need to be mastered to learn web front-end development. Interested friends can refer to

1 Introduction to HTML

1.1 First experience with coding, making the first web page

  1. <!DOCTYPE HTML>  
    <html>  
        <head>  
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
            <title>制作我的第一个网页</title>  
        </head>  
        <body>  
            <h1>Hello World</h1>  
        </body>  
    </html>

1.2 The relationship between HTML and CSS

To learn the basic technologies of web front-end development, you need to master: HTML, CSS, JavaScript language. Let's take a look at what these three technologies are used to achieve:
1. HTML is the carrier of web page content. Content is the information that web page creators put on the page for users to browse, and can include text, pictures, videos, etc.
2. CSS style is performance. It's like a coat for a web page. For example, title font, color changes, or adding background images, borders, etc. to the title. All these things used to change the appearance of content are called presentations.
3. JavaScript is used to implement special effects on web pages. For example: the drop-down menu pops up when the mouse slides over it. Or the background color of the table changes when the mouse rolls over it. There is also a rotation of hot news (news pictures). It can be understood that animation and interaction are generally implemented using JavaScript.
The following code demonstrates the effect of CSS. HTML is used to represent web page elements. CSS makes elements more expressive, such as element position, size, color, font, etc.:

<!DOCTYPE HTML>  
<html>  
    <head>  
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
        <title>Html和CSS的关系</title>  
        <style type="text/css">  
        h1{   
            font-size:19px;   
            color:#930;   
            text-align:center;   
        }   
        </style>  
    </head>  
    <body>  
        <h1>Hello World!</h1>  
    </body>  
</html>

( 1) Line 8 of code affects the text size of the window.
(2) Line 9 of code affects the change of window text color.
(3) Line 10, changes that affect the centering of window text.

1.3 Understanding HTML tags

Various web pages are composed of html tags. The following is a simple web page:

<!DOCTYPE HTML>  
<html>  
    <head>  
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
        <title>认识html标签</title>  
    </head>  
  
    <body>  
        <h1>勇气</h1>  
        <p>三年级时,我还是一个胆小如鼠的小女孩,上课从来不敢回答老师提出的问题,生怕回答错了老师会批评我。就一直没有这个勇气来回答老师提出的问题。学校举办的活动我也没勇气参加。</p>  
        <p>到了三年级下学期时,我们班上了一节公开课,老师提出了一个很简单的问题,班里很多同学都举手了,甚至成绩比我差很多的,也举手了,还说着:"我来,我来。"我环顾了四周,就我没有举手。</p>  
        <img src="http://img.imooc.com/52b4113500018cf102000200.jpg" >  
    </body>  
</html>


The effect is as follows:

前端开发必学的HTML知识

Analyze this web page What HTML is composed of:
(1) "Courage" is the title of the web content article, 4a249f0d628e2318394fd9b75b4636b1473f0a7621bec819994bb5020d29372a is the title tag, and its code on the web page is written as 4a249f0d628e2318394fd9b75b4636b1Courage2b5a148bd057b0a75a119f9b8f77611694b3e26ee717c64999d7867364b1b4a3 is the paragraph tag. The code on the web page reads e388a4556c0f65e1904146cc1a846beeWhen I was in third grade... I didn't have the courage to participate. 94b3e26ee717c64999d7867364b1b4a3
(3) The picture of the little girl on the web page is completed by the img tag. Its code on the web page is written as 4faf7b57895b870867b99beee44351ac

1.4 Label syntax

1. A label is enclosed by English angle brackets 709755eb0d440af414163d2e5288b1b1, such as a label. Tags in
2.html generally appear in pairs, divided into start tags and end tags. The closing tag has one more / than the opening tag.
3. The tag structure diagram is as follows:

前端开发必学的HTML知识

4. Tag examples:

(1) e388a4556c0f65e1904146cc1a846bee94b3e26ee717c64999d7867364b1b4a3
(2) e388a4556c0f65e1904146cc1a846bee94b3e26ee717c64999d7867364b1b4a3
(3) 45a2772a6b6107b401db3c9b82c049c254bdf357c58b8a65c66d7c19c8e4d114


5. Tags can be nested. But the order must be consistent. For example: e388a4556c0f65e1904146cc1a846bee is nested in e388a4556c0f65e1904146cc1a846bee, then 94b3e26ee717c64999d7867364b1b4a3 must be placed in front of 94b3e26ee717c64999d7867364b1b4a3. As shown below.

前端开发必学的HTML知识

##6. HTML tags are not case-sensitive. 4a249f0d628e2318394fd9b75b4636b1 and a1c25df8b39638c7fd29ee1606e34a19 are the same, but lowercase is recommended because most programmers use lowercase. allow.

7. Test: There is a web page code, but the 9th line is missing the code, please add:

<!DOCTYPE HTML>  
<html>  
    <head>  
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
        <title>标签的语法</title>  
    </head>  
    <body>  
        <h1>在本教程中,你将学习如何使用 HTML 来创建站点</h1>  
        <p>当特殊的样式需要应用到个别元素时,就可以使用内联样式。    
    </body>  
</html>

1.5 html/head/body understand HTML Basic file structure

Learn the structure of html files: An HTML file has its own fixed structure.

<html>  
    <head>...</head>  
    <body>...</body>  
</html>

代码讲解:
1. 100db36a723c770d327fc0aef2ce13b173a6ac4ed44ffec12cee46588e518a5e称为根标签,所有的网页标签都在100db36a723c770d327fc0aef2ce13b173a6ac4ed44ffec12cee46588e518a5e中。
2.93f0f5c25f18dab9d176bd4f6de5d30e 标签用于定义文档的头部,它是所有头部元素的容器。头部元素有b2386ffb911b14667cb8f0f91ea547a7、3f1c4e4b6b16bbbd69b2ee476dc4f83a、 c9ccee2e6ea535a969eb3f532ad9fe89、2cdf5bf648cf2f33323966d7f58a7f3f、 e8e496c15ba93d81f6ea4fe5f55a2244等标签,头部标签在下一小节中会有详细介绍。
3.在6c04bd5ca3fcae76e30b72ad730ca86d和36cc49f0c466276486e50c850b7e4956标签之间的内容是网页的主要内容,如4a249f0d628e2318394fd9b75b4636b1、e388a4556c0f65e1904146cc1a846bee、3499910bf9dac5ae3c52d5ede7383485、a1f02c36ba31691bcfe87b2722de723b等网页内容标签,在这里的标签中的内容会在浏览器中显示出来。

下面的代码的HTML文件结构不完整,因为缺少标签100db36a723c770d327fc0aef2ce13b1和73a6ac4ed44ffec12cee46588e518a5e:

<!DOCTYPE HTML>  
  
    <head>  
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
        <title>认识html文件基本结构</title>  
    </head>  
    <body>  
        <h1>在本小节中,你将学会认识html文件基本结构</h1>  
</body>


1.6 head标签

 •标签的作用:文档的头部描述了文档的各种属性和信息,包括文档的标题等。绝大多数文档头部包含的数据都不会真正作为内容显示给读者。
 •下面的标签可以在head部分:

<head>  
    <title>...</title>  
    <meta>  
    <link>  
    <style>...</style>  
    <script>...</script>  
</head>

 •b2386ffb911b14667cb8f0f91ea547a7标签:在b2386ffb911b14667cb8f0f91ea547a7和6e916e0f7d1e588d4f442bf645aedb2f标签之间的文字内容是网页的标题信息,它会出现在浏览器的标题栏中。网页的title标签用于告诉用户和搜索引擎这个网页的主要内容是什么,搜索引擎可以通过网页标题,迅速的判断出网页的主题。每个网页的内容都是不同的,每个网页都应该有一个独一无二的title。
例如,b2386ffb911b14667cb8f0f91ea547a7标签的内容“hello world”会在浏览器中的标题栏上显示出来,如图: 

<head>  
    <title>hello world</title>  
</head>


1.7 了解HTML的代码注释

代码注释的作用:帮助程序员标注代码的用途,过一段时间后再看你所编写的代码,就能很快想起这段代码的用途。代码注释不仅方便程序员自己回忆起以前代码的用途,还可以帮助其他程序员很快的读懂你的程序的功能,方便多人合作开发网页代码。
语法:

20bef4e8dd3adb180086fee82c5c25f9

下面代码的第 8、12 行都是注释代码,但是发现他们是不会在结果窗口中显示出来的:

<!DOCTYPE HTML>  
<html>  
    <head>  
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
        <title>HTML的代码注释</title>  
    </head>  
    <body>  
        <!--在线咨询 begin-->  
        <p>  
            <p>一站式报名咨询!<a href="#">向报名顾问咨询</a></p>  
        </p>  
        <!--在线咨询 end-->  
    </body>  
</html>



The above is the detailed content of HTML knowledge that must be learned for front-end development. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn