search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

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>


new file
<!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>
Reset Code
Automatic operation
submit
Preview Clear