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

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>這是我們的第一個頁面</title>
    </head>
    <body>
        <h1>歡迎加入php.cn</h1>
        <h2>希望你能夠在這里學的開心</h2>
    </body>
</html>


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>希望你能夠在這里學的開心</h2> </body> </html>
submitReset Code