Don't forget to close the HTML tag

Don't forget to close the HTML tag
Building web pages that comply with Web standards has always been a topic that jb51.net discusses with everyone. Then, did you remember to close all XHTML elements? Some elements in HTML do not need to be closed. When the next element starts, the previous element is automatically closed. XHTML does not allow this. All elements must be closed, even if they have no content (such as <img>). This kind of page editing conforms to web standards.


mistake:
<li>Item 1
correct:
<li>Item 1</li>

mistake:
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
correct:
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>

mistake:
<br>
correct:
<br />

mistake:
<img src="image.jpg" alt="">
correct:
<img src="image.jpg" alt="" />

Wrong practices should be 100% avoided. As always, always keep all your markers closed.

<<:  jQuery uses the canvas tag to draw the verification code

>>:  A summary of detailed insights on how to import CSS

Recommend

Vue form input binding v-model

Table of contents 1.v-model 2. Binding properties...

Sample code for implementing horizontal infinite scrolling with pure CSS3

The examples in this article are all written in s...

MySQL log system detailed information sharing

Anyone who has worked on a large system knows tha...

The past two years with user experience

<br />It has been no more than two years sin...

A Deeper Look at SQL Injection

1. What is SQL injection? Sql injection is an att...

MySQL 5.7 installation-free configuration graphic tutorial

Mysql is a popular and easy-to-use database softw...

Vue.js implements the nine-grid image display module

I used Vue.js to make a nine-grid image display m...

How to build nfs service in ubuntu16.04

Introduction to NFS NFS (Network File System) is ...

Sample code for seamless scrolling with flex layout

This article mainly introduces the sample code of...

SpringBoot integrates Activiti7 implementation code

After the official release of Activiti7, it has f...

Box-shadow and drop-shadow to achieve irregular projection example code

When we want to add a shadow to a rectangle or ot...