Summary of the differences between Html, sHtml and XHtml

Summary of the differences between Html, sHtml and XHtml
For example: <u> This has no ending character and the browser recognizes it

Shtml is based on Server Side Include (SSI). When there is a server-side executable script, it is treated as a dynamic programming language and can be included. When there is no server-side script, it is no different from HTML.

XHTML is based on the W3C standard and follows the strict XML format. It can be considered a transition from HTML to XML, and the syntax format is strictly required.

xhtml<p> must have a </p> end character (all elements must be closed)

xhtml<p><strong></strong></p> (correct nesting)

XHTML attributes should be enclosed in double quotes

Xhtml is case-sensitive, and the attributes and values ​​of tags are all lowercase.

Xhtml uses id instead of name attribute

<<:  What codes should I master when learning web page design?

>>:  Detailed explanation of using backgroundImage to solve the image carousel switching

Recommend

Win10 configuration tomcat environment variables tutorial diagram

Before configuration, we need to do the following...

Kill a bunch of MySQL databases with just a shell script like this (recommended)

I was woken up by a phone call early in the morni...

Summarize how to optimize Nginx performance under high concurrency

Table of contents Features Advantages Installatio...

K3s Getting Started Guide - Detailed Tutorial on Running K3s in Docker

What is k3d? k3d is a small program for running a...

Let's talk about MySQL joint query in detail

Table of contents Union query 1. Query the ID and...

How to quickly build an LNMP environment with Docker (latest)

Preface Tip: Here you can add the approximate con...

mysql 8.0.16 winx64.zip installation and configuration method graphic tutorial

This article shares the specific code of MySQL 8....

A complete guide on how to query and delete duplicate records in MySQL

Preface This article mainly introduces the method...

Example code for implementing equal width layout in multiple ways using CSS

The equal-width layout described in this article ...

About the location of the H1 tag in XHTML

There has been a lot of discussion about H1 recent...

MySQL master-slave principle and configuration details

MySQL master-slave configuration and principle, f...

JavaScript's unreliable undefined

undefined In JavaScript, if we want to determine ...