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

Introduction to HTML Basics Tutorial

HTML, Hypertext Markup Language, hypertext markup language.

  • HTML is a specification, a standard, a standard for writing web pages.

  • Hypertext: That is, there are not only texts on the web page, but also pictures, music, videos, etc.

  • Notation: It is a mark and a sign. For example: traffic light

  • Language: The "language" here is code and has nothing to do with the so-called "programming language".

The main purpose of HTML is to display different effects and parts of web pages. Such as: <b>Text</b>

Let’s take a look at our first example of learning HTML:

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


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