Using HTML web page examples to explain the meaning of the head area code

Using HTML web page examples to explain the meaning of the head area code
Use examples to familiarize yourself with the meaning of the header information on a web page
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"><!--Document Type-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><!--Set the file encoding of the web page-->
<meta http-equiv="expires" content="2008/10/15 18:00:00"><!--Expiration time for offline browsing-->
<meta http-equiv="pragma" content="no-cache"><!--Prohibit web pages from being read from the cache-->
<meta http-equiv="Refresh" content="5;https://www.jb51.net"><!--Web page redirection-->
<meta http-equiv="set-cookie" content="2007/10/18 18:00:00"><!--Set the cookie expiration time of the web page-->
<meta http-equiv="Window-target" content="_top"><!--Set the target window of the link in the web page-->
<meta http-equiv="Page-Enter" content="revealTrans(duration=1000000,transition=50000000)"><!--Set the opening effect of the web page-->
<meta http-equiv="Page-Exit" content="revealTrans(duration=1000000,transition=50000000)"><!--Set the closing effect of the web page-->
<meta name="keywords" content="web,jb51,webdesign"><!--Set the keywords of the web page, and give priority when searching! ! ! important! ! ! This data is indexed by search engines -->
<meta name="description" content="哈哈哈哈哈哈"><!--Insert description to be indexed by search engines when searching-->
<title>The title must not be missing! Very useful for SEO! </title>
</head>
<body>
aaa
</body>
</html>

<<:  About VSCode formatting JS automatically adding or removing semicolons

>>:  Why MySQL can ignore time zone issues when using timestamp?

Recommend

CSS to implement sprites and font icons

Sprites: In the past, each image resource was an ...

Use Vue3 to implement a component that can be called with js

Table of contents Preface 1. Conventional Vue com...

A brief introduction to JavaScript arrays

Table of contents Introduction to Arrays Array li...

The past two years with user experience

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

Summary of frequently used commands for Linux file operations

0. New operation: mkdir abc #Create a new folder ...

WeChat Mini Program User Authorization Best Practices Guide

Preface When developing WeChat applets, you often...

JavaScript canvas implements moving the ball following the mouse

This article example shares the specific code of ...

Some suggestions on Vue code readability

Table of contents 1. Make good use of components ...

Implementation of Nginx load balancing/SSL configuration

What is load balancing? When a domain name points...

Javascript basics about built-in objects

Table of contents 1. Introduction to built-in obj...

Detailed explanation of MySQL 8.0.18 commands

Open the folder C:\web\mysql-8.0.11 that you just...

The webpage cannot be opened because the div element lacks a closing tag

At first I thought it was a speed issue, so I late...

Tutorial on using the hyperlink tag in HTML

The various HTML documents of the website are con...

How to check if data exists before inserting in mysql

Business scenario: The visitor's visit status...