I want to have a 16 day forehead! Then start with the structure and element of the HTML page

Text Markup Language, English: Hypertext Markup Language, referred to as: html, is the standard markup language for creating web pages. Note that HTML is a language, not a programming language.

You can use HTML to create your website. HTML runs in the browser and is parsed by the browser. H5 on the mobile phone is also parsed by the browser, but it is just an application that is built into the browser component. You don’t see it.

Currently, HTML5 is the latest version and major browsers are supported. If there is no support, it is a good idea to upgrade to the latest version. HTML5 also supports mobile phone operation, so there is no reason why we can’t learn H5.

第1å¤ © |  16 e © wah® «¯ï¼htmlé¡µé ¢ ç» wah (å¿ç)

Before I learned HTML, many people thought it was a hard time. In fact, learning HTML was a label. except As an H5 file, except for specific characters such as rune label (eg

).

All you need to do is understand the meaning of the label and place the content within it. It’s very easy to say. the correct. Not only is it easy to develop HTML, but it is not a development tool such as Webstorm, Eclipse, Vscode, etc.; Development tools like Java, C#, PHP, Python, etc.

The template HTML5 file generated by the authoring tool is the complete structure of the page. Content may be removed according to your personal preferences. If there is no content, it will be called an empty label.

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <Title> HTML здесь </title>
</head>
<body>
 <h1> Лао Чен сказал, что программирование </h1>
 <p> Старик в индустрии программирования </p>
 <a href="home.html"> личная домашняя страница </a>
</body>
</html>

Output results (open with browser)

第1å¤ © |  16 e © wah® «¯ï¼htmlé¡µé ¢ ç» wah (å¿ç)

An HTML document is defined by HTML elements. The element begins with a starting label (eg,

) to end with a sign (eg, ). The content of the element is the content of the start label and the end tag, for example: Lao Chen said programming. Labels are not case sensitive:

Draw

with the recommendation in lowercase letters.

href on Label feature. Attributes can be added to an element that appears as a name/value pair, and is usually placed at the start tag.

HTML Note: You can insert an annotation into the HTML code, which can improve readability and make the code easier to understand. The browser ignores the annotation and it will not be displayed.

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
         <Title> 2 -й html </title>
</head>
<body>
 <h3> Это естественно, естественная красота - настоящая красота </h3>
 <!-Это комментарий, SRC-атрибут->
<img src="mm.jpg"/>
</body>
</html>

output results

    1 |  16,html()

Well, the content of the HTML page structure and elements, after the conversation, if you feel useful, I hope you can repost the old iron and make more people see this article. Your redirects and likes are my biggest support as I continue to create and share.

Leave a Comment