亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

HTML file structure

QQ截圖20161010161329.png

In this picture, the simple structure diagram of the html file is shown (we will explain each part one by one). We can compare and see that the general html file structure is as follows

<html>
    <head>
            <title>.....</title>
    </head>
    <body>
            <p>.....</p>
    </body>
</html>

Code explanation:

1. <html></html> is called the root tag, and all web page tags are in <html></html>.

2. The <head> tag is used to define the head of the document, which is a container for all head elements. Header elements include <title>, <script>, <style>, <link>, <meta> and other tags. Header tags will be introduced in detail in the next section.

3. The content between the <body> and </body> tags is the main content of the web page, such as <h1>, <p>, <a>, <img> Wait for the web content tag, and the content in the tag here will be displayed in the browser.


Continuing Learning
||
<html> <head> <title>PHP中文網(wǎng)</title> </head> <body> <p>PHP中文網(wǎng)</p> </body> </html>
submitReset Code