国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

The overall composition of the page in HTML basic tutorial

Open any web page with a browser, right-click and select View web page source code, you can see the HTML code of the website. To summarize, the overall structure is as follows:

1.png


Note, the arrow represents the inclusion relationship

Next, we will explain each tag in detail


Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>這是我們的第一個頁面</title> </head> <body> <h1>歡迎加入php.cn</h1> <h2>希望你能夠在這里學(xué)的開心</h2> </body> </html>
submitReset Code