Common tags in XHTML

Common tags in XHTML

What are XHTML tags?
XHTML tag elements are the basic components of XHTML documents. XHTML tags can be understood as tags used by the XHTML language to define what "this is, what that is" in an XHTML document.
XHTML tags are keywords surrounded by angle brackets and often appear in pairs, such as <html></html>. This tag indicates that this is an HML (XHTML) document. The first tag in a tag pair is the start tag and the second tag is the end tag.
There are also a few tags that are not paired or have no ending tag, such as the line break tag <br />.
Closing XHTML Tags In the XHTML specification, all tags must be closed. Usually paired tags are closed with an end tag, and unpaired tags are closed with a space plus />, such as <br />.
Although browsers can recognize unclosed tags, closing tags is required from the specification and in the long run.

Commonly used XHTML tags
<html></html> tags
This tag indicates that this is an hmtl (xhtml) document. Except for the XHTML file type declaration, all other XHTML tag elements must be embedded in this tag.

XML/HTML CodeCopy content to clipboard
  1. < html >   
  2. < head > ... </ head >   
  3. < body >   
  4. < p > Text paragraphs and other text content </ p >   
  5. </ body >   
  6. </ html >   

<head></head> tag
<head></head> indicates the header information of the XHTML document, which is usually required by the browser and contains additional instructions for the XHTML document, such as CSS styles or other script information loaded by the document.

<title></title> tag
This tag defines the title of the entire XHTML document and is used to display in the title bar at the top of the browser window. The tag is nested in <head></head>.

XML/HTML CodeCopy content to clipboard
  1. < head >   
  2. < title > XHTML Tags - XHTML Tutorial </ title >   
  3. </ head >   
  4. The < body > </ body > tag

As the name implies, this tag describes the main content of the XHTML document. All the main content that needs to be displayed is included in this tag.

XHTML Title
XHTML document titles are divided into 6 levels, defined by <h1> - <h6> respectively.

XML/HTML CodeCopy content to clipboard
  1. < h1 > First level title </ h1 >   
  2. < h1 > Second level title </ h1 >   
  3. < h1 > Level 3 title </ h1 >   

Note that this is not the title, but usually <h1> is equivalent to <title> in its core.

XHTML Paragraphs
XHTML paragraphs are defined by the <p></p> tags:

XML/HTML CodeCopy content to clipboard
  1. < p > This is a paragraph </ p >   

XHTML Hyperlinks
XHTML hyperlinks are defined by the <a></a> tags:

XML/HTML CodeCopy content to clipboard
  1. <   href = "https://www.jb51.net" > 5iDev Web Development Online Tutorial </ a >   

XHTML Images
XHTML images are defined using the <img> tag:

XML/HTML CodeCopy content to clipboard
  1. < img   src = "flower.jpg"   alt = "flower"   />   

In this tag, the image source is provided as src attribute, and this tag will display the flower.jpg image in the browser.

XHTML forms
XHTML forms are used to collect user input information, such as user messages, etc. The form is defined by <form></form>:

XML/HTML CodeCopy content to clipboard
  1. < form >   
  2. Various form elements (text fields, drop-down lists, radio buttons, check boxes, etc.)
  3. </ form >   

<<:  Centos6.5 glibc upgrade process introduction

>>:  MySQL example to explain single-row functions and character math date process control

Recommend

Reasons why MySQL kill cannot kill threads

Table of contents background Problem Description ...

In-depth study of vue2.x--Explanation of the h function

Table of contents Solution, Summarize: vue projec...

Initial summary of the beginner's website building tutorial

After writing these six articles, I started to fee...

Why not use UTF-8 encoding in MySQL?

MySQL UTF-8 encoding MySQL has supported UTF-8 si...

Detailed explanation of docker compose usage

Table of contents Docker Compose usage scenarios ...

Detailed explanation of fs module and Path module methods in Node.js

Overview: The filesystem module is a simple wrapp...

MySQL 5.7 installation and configuration tutorial under CentOS7 64 bit

Installation environment: CentOS7 64-bit MINI ver...

Detailed explanation of how to access MySQL database remotely through Workbench

Preface Workbench is installed on one computer, a...

How Database SQL SELECT Queries Work

As Web developers, although we are not profession...

Examples of implementing progress bars and order progress bars using CSS

The preparation for the final exams in the past h...

A brief discussion on why daemon off is used when running nginx in docker

I'm very happy. When encountering this proble...

How to use multi-core CPU to speed up your Linux commands (GNU Parallel)

Have you ever had the need to compute a very larg...

Getting Started Guide to MySQL Sharding

Preface Relational databases are more likely to b...