


Comprehensive list of commonly used HTML tags and characteristics of html tags_HTML/Xhtml_Web page production
首先要知道html标签的一些特点:
1.类似“<关键字>”这样由尖括号包关键字组成,例如,
2.一般是成对出现的,由开始标签类似“
First remember some exceptional single closing tags, for example:
Set page information | Can provide parameters for the containing | |||
Line break | Define generated key | |||
Horizontal line | Define media sources for media elements such as | |||
Image show area | Define attribute values for one or more columns in the table | |||
Form elements, input fields of different types have different forms | Define a specific window (frame) in the frameset | |||
Link stylesheet | Define embedded content, such as plug-ins | |||
Define the base font. HTML5 does not support the |
...... |
The tags are classified according to different effects:
1. Font effect
… |
The font size of title 1 (maximum) becomes smaller as you go down. Web pages generally range from h1 to h4, and they are generally not used after h4 | Strikethrough | ||
… |
Title 6 (minimum) | Strikethrough (indicates deletion) | ||
… | Bold font | … | Keyboard text | |
.. | Bold font (emphasis added) | … | Type font | |
… | Italics | Fixed-width font (valid for blanks, line breaks, and positioning functions in files) | ||
…/em> | italics (emphasis added) | Fixed width font (does not implement markup symbols) | ||
... | Italics (indicates definition) | Fixed width small font | ||
… | Bottom line | … | Font color (you can also write something like color="#00ff00") | |
... | Underline (indicates inserted text) | … | Minimum font | |
Horizontal line | Unlimited increase (font size is 100px) |
2. Section break mark
Horizontal line | Line breaks are prohibited, abbreviation of No Break | |||
Horizontal line (set size) | … |
Paragraph | ||
Horizontal line (set width) | Center the surrounding text | |||
Horizontal line (set color) | ||||
Line break |
3. Link
4. Graphics/Music
Post pictures to web pages | Set the picture border of the post | |||
Set the image width of the post | Background music setting | |||
Set the height of the posted image |
5. Form
Table position, left | Specify the distance between grid lines and network lines (using numbers) | |||
The position of the table, centered |

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



HTML (HyperTextMarkupLanguage) is a standard language for creating Web pages. It uses tags and attributes to describe various elements on the page, such as text, images, tables, links, etc. However, when processing HTML text, it is difficult to quickly extract the text content for subsequent processing. At this time, we can use regular expressions in Python to remove HTML tags to quickly extract plain text. In Python, regular tables

How to use regular expressions to extract HTML tag content in Go language Introduction: Regular expression is a powerful text matching tool, and it is also widely used in Go language. In the scenario of processing HTML tags, regular expressions can help us quickly extract the required content. This article will introduce how to use regular expressions to extract the content of HTML tags in Go language, and give relevant code examples. 1. Introduce related packages First, we need to import related packages: regexp and fmt. regexp package provides

PHP is a commonly used server-side scripting language that is widely used in website development and back-end application development. When developing a website or application, you often encounter situations where you need to process HTML tags in strings. This article will introduce how to use PHP to remove HTML tags from strings and provide specific code examples. Why do you need to remove HTML tags? HTML tags are often included when processing user input or text obtained from a database. Sometimes we want to remove these HTML tags when displaying text

In PHP, you can use the htmlentities() function to escape html, which can convert characters into HTML entities. The syntax is "htmlentities(string,flags,character-set,double_encode)". You can also use the html_entity_decode() function in PHP to de-escape html and convert HTML entities into characters.

String is a final class in Java, it is immutable, which means we cannot change the object itself, but we can change the reference of the object. HTML tags can be removed from a given string using the replaceAll() method of String class. We can remove HTML tags from a given string using regular expressions. After removing the HTML tags from the string, it returns a string as normal text. Syntax publicStringreplaceAll(Stringregex,Stringreplacement) example publicclassRemoveHTMLTagsTest{&nbs

We can easily add HTML tags in the table. HTML tags should be placed inside <td> tags. For example, add paragraph <p>…</p> tags or other available tags inside the <td> tag. Syntax The following is the syntax for using HTMl tags in HTML tables. <td><p>Paragraphofthecontext</p><td>Example 1 An example of using HTML tags in an HTML table is given below. <!DOCTYPEhtml><html><head&g

PHP is an efficient web development language that supports regular expression functions and can quickly verify the validity of input data. In web development, HTML is a common markup language, and validating HTML tags is a very important method for web form validation. This article will introduce basic HTML tag verification methods and how to use PHP regular expressions for verification. 1. Basic structure of HTML tags HTML tags consist of element names and attributes surrounded by angle brackets. Common tags include p, a, div

HTML标签有<!DOCTYPE>、<html>、<head>、<title>、<meta>、<link>、<style>、<script>、<body>、<h1> - <h6>、<p>、<a>、<img>、<div>、<span>、<input>、<button>、<form
