Summary of commonly used tags in HTML (must read)

Summary of commonly used tags in HTML (must read)

Content Detail Tags:

<h1>~<h6>Title Tags
<pre>Format text
<u>Underline
<i>Italics
<cite> citation, usually in italics
Emphasized text is usually italicized
<strong>Emphasis text, usually bold
<font>Set font, font size, color, etc.
<big><small>Enlarge and reduce font size
<del> add a strikethrough
<code>Program code
<kbd> defines the keyboard text
<blockquote> block quote, usually indented
<address> address tag
<sup>superscript
<sub>Subscript
<br>Line Break
<hr>Horizontal line

List Tags:

<dl>, <dt>, and <dd> are tags for definition lists
<ul> and <li> unordered lists
<ol> and <li> ordered lists

Table tags:

<table>, <tbody>, <tr>, <th>, and <td>

The above summary of commonly used tags in HTML (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.

<<:  Solution to the problem of large font size on iPhone devices in wap pages

>>:  Analysis of the principles of several ways to imitate the magnifying glass effect in CSS3

Recommend

MySQL replication mechanism principle explanation

Background Replication is a complete copy of data...

A Deep Dive into JavaScript Promises

Table of contents 1. What is Promise? 2. Why is t...

Vue implements the full selection function

This article example shares the specific code of ...

How to find and delete duplicate records in MySQL

Hello everyone, I am Tony, a teacher who only tal...

The difference between mysql outer join and inner join query

The syntax for an outer join is as follows: SELEC...

JavaScript data transmission between different pages (URL parameter acquisition)

On web pages, we often encounter this situation: ...

CentOS 7.9 installation and configuration process of zabbix5.0.14

Table of contents 1. Basic environment configurat...

How to limit the input box to only input pure numbers in HTML

Limit input box to only pure numbers 1、onkeyup = ...

The concept of MySQL tablespace fragmentation and solutions to related problems

Table of contents background What is tablespace f...

Native JS to implement hover drop-down menu

JS implements a hover drop-down menu. This is a s...

Use of vuex namespace

Table of contents Since Vuex uses a single state ...

4 solutions to CSS browser compatibility issues

Front-end is a tough job, not only because techno...

JavaScript array merging case study

Method 1: var a = [1,2,3]; var b=[4,5] a = a.conc...