search
HomeWeb Front-endHTML TutorialList of HTML tags in HTML language analysis

Remarks on tag type translation or meaning
File tag
● File declaration lets the browser know that this is an HTML file

● Provides overall information about the file at the beginning
● Title defines the file title, will Displayed at the top of the browser <br> ● The design file format and content of this article are located
Typesetting mark
○ The description mark adds a description to the file, but is not displayed

○ Paragraph mark leaves a blank line between words, pictures, tables, etc.

○ Line break mark makes words, pictures, tables, etc. appear on the next line


○ Horizontal line inserts a horizontal line
● Centering allows words, pictures, tables, etc. to be displayed in the middle
 ● Default format makes the file display according to the arrangement of the source code <br><div> ● Separation tags set the placement of words, pictures, tables, etc. Placement <br><nobr> ● Do not wrap the text because it is too long. <br><wbr> ● It is recommended to preset the wrapping position <br>Font mark <br><strong> ● Emphasize the tone to make the font bold Bold The effect of <br><b> ● Bold mark produces the effect of thickening the font <br><em> ● Emphasis mark font has italic effect <br><i> ● Italic mark font has italic effect <br><tt> ● Typing font Courier Fonts, letter widths are the same <br><u> ● Add an underline and add an underline to oppose it <br><h1> ● The first-level title mark becomes thicker, larger and wider, and the degree is inversely proportional to the series <br><h2> ● The second-level title mark Make the font bolder, larger, and wider <br><h3> ● Level 3 title tags make the font bolder, larger, and wider <br><h4> ● Level 4 title tags make the font bolder, larger, and wider <br><h5> ● The fifth-level title tag makes the font thicker, larger and wider <br><h6> ● The sixth-level title tag makes the font thicker, larger and wider <br><font> ● The glyph tag sets the font, size and color support <br><basefont base glyph mark sets all fonts sizes and colors to support><big> ● Font increase makes the font slightly larger <br><small> ● Font shrink makes the font slightly smaller <br><strike> ● Draw lines Delete and add a strikethrough to the font. <br><code> ● The code font is slightly wider, such as <tt> <br><kbd> ● The keyboard font is slightly wider, single space <br><samp> ● The sample font is slightly wider As wide as <tt> <br><var> ● Variable italic effect <br><cite> ● Biography quote italic effect <br><blockquote> ● Quotation text block indented font <br><dfn> ● Predicate definition italic effect <br> <address> ● Italic effect of address mark <br><sub> ● Subscript subscript <br><sup> ● Superscript index (square, cubic, etc.) <br>List mark <br><ol> ● Sequential list list items Will be arranged in numerical and alphabetical order <br>
</ol>
<ul> ● Unordered list items will be arranged in dots <br><li> ○ Each mark of the list item marks a list item <br><menu> ● Menu list items will be Arranged in dots, such as </menu>
<ul> against <br><dir> ● Directory list items will be arranged in dots, such as </dir>
<ul> against <br><dl> ● Definition list appears in two layers <br><dt the definition entry indicates title of></dt>
<dd> ○ The definition content indicates the definition content <br>Table tag <br><table> ● The table tag sets the parameters of the table <br><caption> ● The table title is made Open columns to fill in the table title <br>
</caption>
<tr> ● Table column sets the column of the table <br><td> ● Table column sets the column of the table <br>
</td>
<th> ● Table header is equal to </th>
<td but the font inside will become bold></td>Form mark <br><form> ● The form mark determines the operation mode of a single form <br><textarea> ● The text area provides a text box for inputting larger amounts of text <br><input> ○ The input mark determines the input form <br><select> ● Select the mark to create a pop-up scrolling list <br><option> ○ Each mark of the option marks an option <br>Graphic mark <br><img  alt="List of HTML tags in HTML language analysis" > ○ The graphical mark is used to insert graphics and Set graphic properties <br>Link tag <br><a> ● Link tag to add link <br><base> ; ○ In-page frame inserts a frame in the middle of the web page IE <br><noframes> ● Frame settings are not supported Prompt when the browser does not support frames <br>Image map <br><map> ● Image map name set image map name <br>&lt ;AREA> ○ Link area settings for each link area <br>Multimedia <br><bgsound> ○ Background sound to play sound or music IE in the background <br><embed> ○ Multimedia to add sound, music or images <br>Other tags <br><marquee> ● Move text to make text move left and right IE <br><blink> ● Blinking text Blinking text NC <br><isindex> ○ In-page finder can enter keywords to find objects on this page <br><meta> ○ The beginning definition lets the browser know This is an HTML file <br><link> ○ Relationship definition defines the relationship between this file and other URLs <br>StyleSheet <br><style> ● Style sheet controls web page layout <br/><span> ● Custom tags can be used independently or together with style sheets <br/><br/>The above is the list of HTML tags in HTML language analysis. For more related articles, please pay attention to the PHP Chinese website (www.php.cn)! <br/><br/><p></style></blink></marquee></embed></bgsound></map>
</noframes></a>
</option></select></textarea>
</form>
</tr>
</table>
</dd>
</dl>
</ul>
</ul>
</li>
</ul></sup></sub>
</address></dfn>
</blockquote></cite></var></tt></samp></kbd></tt></code></strike></small></big></font>
</h6>
</h5>
</h4>
</h3>
</h2>
</h1></u></tt></i></em></b></strong></wbr></nobr>
</div>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment