HTML Learning Notes--Detailed Explanation of HTML Syntax (Must Read)

HTML Learning Notes--Detailed Explanation of HTML Syntax (Must Read)

1. What is HTML markup language?

HTML is a markup language that represents web page information.

2.HTML tags and their attributes

1. HTML document saving format: .html, .htm, .xhtml

2. Tags and tagged content construct HTML documents. Format: <tag>content</tag>

3. Tag attributes (used to control how images, text, etc. are displayed) format: <tag attribute 1 = attribute value attribute 2 = attribute value...> content</tag>

3. The syntax is not case sensitive

<HTML>, <Html>, and <html> all define the same tag, but try to use lowercase when writing web pages.

4. Documentation Comments

When commenting a paragraph, start with "<!--" and end with "-->".

For example:

<!--This is a document comment-->

The above HTML learning notes - Detailed explanation of HTML syntax (must read) is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

<<:  A complete list of commonly used shared codes for web pages (essential for front-end)

>>:  MySQL series tutorial on understanding the use of union (all) and limit and exists keywords

Recommend

CSS container background 10 color gradient Demo (linear-gradient())

grammar background: linear-gradient(direction,col...

Vue recursively implements three-level menu

This article example shares the specific code of ...

Use of js optional chaining operator

Preface The optional chaining operator (?.) allow...

Introduction to Spark and comparison with Hadoop

Table of contents 1. Spark vs. Hadoop 1.1 Disadva...

CSS flex several multi-column layout

Basic three-column layout .container{ display: fl...

Implementation of adding remark information to mysql

Preface Some people have asked me some MySQL note...

Implementation of react automatic construction routing

Table of contents sequence 1. Centralized routing...

Sample code for installing ASPNET.Core3.0 runtime in Linux

# The following examples are for x64-bit runtime ...

Our thoughts on the UI engineer career

I have been depressed for a long time, why? Some t...

javascript:void(0) meaning and usage examples

Introduction to void keyword First of all, the vo...

Bootstrap realizes the effect of carousel

This article shares the specific code of Bootstra...

Vue implements the method of displaying percentage of echart pie chart legend

This article mainly introduces the pie chart data...