6 Uncommon HTML Tags

6 Uncommon HTML Tags
First: <abbr> or <acronym>
These two symbols mean the same thing, and are mainly used for some English abbreviations. When you move the mouse over them, you will find a small prompt to show the full name of the abbreviation. Here is an example:

<ABBR title="HyperText Markup Language">HTML </ABBR>
<ABBR title="Institute of Electrical and Electronics Engineers"> IEEE </ABBR>
<ABBR title="Read the Fucking Source Code">RTFSC</ABBR>

The second one: <q> This symbol mainly puts the quoted text in double quotes. This symbol seems to be meaningless. The official reason is that this is for convenience, but I always feel that this notation is not as convenient as directly entering double quotes. It seems like nothing. Could it be that this logo can only be seen in Firefox and IE does not support it? Here is an example: This is a quote <Q>This is a quote</Q> This is a quote

Thirdly, the <bdo> symbol is very interesting, as it can reverse the order of letters from left to right. For example: May I help you sir? If this mark is added, it will look like this: May I help you sir? What can I do for you? <BDO dir=rtl>May I help you sir ?</BDO> <BDO dir=rtl>What can I do for you sir? </BDO> May I help you sir? How can I help you?

The fourth one, <del>, deletes the string. Such as: This is a deleted text. <DEL>This is a deleted text</DEL> This is a deleted text

The fifth and sixth ones, <sub><sup> are subscript and superscript. Here are examples: This is a subscript, and this is a superscript. This is a <SUB>subscript</SUB>, this is a <SUP>superscript</SUP>

<<:  Discussion on Web Imitation and Plagiarism

>>:  Vue+element+springboot to implement file download progress bar display function example

Recommend

Detailed Analysis of the Selection of MySQL Common Index and Unique Index

Suppose a user management system where each perso...

Deploy Nginx+Flask+Mongo application using Docker

Nginx is used as the server, Mongo is used as the...

Baidu Input Method opens API, claims it can be ported and used at will

The relevant person in charge of Baidu Input Metho...

Mysql5.6.36 script compilation, installation and initialization tutorial

Overview This article is a script for automatical...

Vue2.x configures routing navigation guards to implement user login and exit

Table of contents Preface 1. Configure routing na...

CSS3 animation – steps function explained

When I was looking at some CSS3 animation source ...

Solve the problem of forgetting password in MySQL 5.7 under Linux

1. Problem Forgot password for mysql5.7 under lin...

An article to help you learn CSS3 picture borders

Using the CSS3 border-image property, you can set...

Introduction to possible problems after installing Tomcat

1. Tomcat service is not open Enter localhost:808...

Docker5 full-featured harbor warehouse construction process

Harbor is an enterprise-level registry server for...

MySQL Router implements MySQL read-write separation

Table of contents 1. Introduction 2. Configure My...

JavaScript determines whether the browser is IE

As a front-end developer, I can’t avoid IE’s pitf...

An article to understand what is MySQL Index Pushdown (ICP)

Table of contents 1. Introduction 2. Principle II...