HTML Code Writing Guide

HTML Code Writing Guide

Common Convention Tags

Self-closing tags, no need to be closed (for example: img input br hr, etc.);
An optional closing tag, which must be closed (for example: </li> or </body>);
Minimize the number of tags;

XML/HTML CodeCopy content to clipboard
  1. < img   src = "images/google.png"   alt = "Google" >   
  2. < input   type = "text"   name = "title" >   
  3.   
  4. < ul >   
  5.    < li > Style </ li >   
  6.    < li > Guide </ li >   
  7. </ ul >   
  8.   
  9. <!-- Not recommended -->   
  10. < span   class = "avatar" >   
  11.    < img   src = "..." >   
  12. </ span >   
  13.   
  14. <!-- Recommended -->   
  15. < img   class = "avatar"   src = "..." >   

Class and ID

Classes should be named after their function or content, not their presentation.
The letters of class and id are lowercase. When multiple words are composed, they are separated by hyphens.
Use unique ids as JavaScript hooks and avoid creating classes without style information.

XML/HTML CodeCopy content to clipboard
  1. <!-- Not recommended -->   
  2. < div   class = "j-hook left contentWrapper" > </ div >   
  3.   
  4. <!-- Recommended -->   
  5. < div   id = "j-hook"   class = "sidebar content-wrapper" > </ div >   

Attribute Order

HTML attributes should appear in a specific order to ensure readability.

id
class
name
data-xxx
src, for, type, href
title, alt
aria-xxx, role

XML/HTML CodeCopy content to clipboard
  1. <   id = "..."   class = "..."   data-modal = "toggle"   href = "###" > </ a >   
  2.   
  3. < input   class = "form-control"   type = "text" >   
  4.   
  5. < img   src = "..."   alt = "..." >   

quotation marks

Double quotes are used uniformly in attribute definitions.

XML/HTML CodeCopy content to clipboard
  1. <!-- Not recommended -->   
  2. < span   id = 'j-hook'   class = text > Google </ span >   
  3.   
  4. <!-- Recommended -->   
  5. < span   id = "j-hook"   class = "text" > Google </ span >   

bNested

a does not allow div to be nested. This constraint belongs to semantic nesting constraint. Different from it is strict nesting constraint, for example, a does not allow a to be nested.

Strict nesting constraints are not allowed in all browsers; while semantic nesting constraints are mostly handled by browsers with tolerance, and the generated document trees may be different from each other.

Semantic nesting constraints

<li> is used under <ul> or <ol>;
<dd>, <dt> are used under <dl>;
<thead>, <tbody>, <tfoot>, <tr>, <td> are used under <table>;


Strict nesting constraints

inline-Level elements can only contain text or other inline-Level elements;
Interactive elements such as <a>, <button>, and <select> cannot be nested in <a>;
Block-level elements such as <div>, <h1>~<h6>, <p>, <ul>/<ol>/<li>, <dl>/<dt>/<dd>, and <form> cannot be nested in <p>.

Boolean properties

In the HTML5 specification, attributes such as disabled, checked, and selected do not need to be set with values.

XML/HTML CodeCopy content to clipboard
  1. < input   type = "text" disabled >   
  2.   
  3. < input   type = "checkbox"   value = "1" checked >   
  4.   
  5. < select >   
  6.    < option   value = "1" selected > 1 </ option >   
  7. </ select >   

Semantic
HTML without CSS is a semantic system rather than a UI system.

Normally, each label has semantics. The so-called semantics means that your clothes are divided into coats, pants, skirts, underwear, etc., each with corresponding functions and meanings. So you can't put your underwear around your neck. -- A trace

In addition, the semantic HTML structure helps machines (search engines) understand it, and when multiple people collaborate, they can quickly understand the developer's intentions.

Common tag semantics

Label Semantics
<p> paragraph
<h1><h2><h3>... title
<ul> Unordered list
<ol> Ordered List
<blockquote> Block quotes
<cite> General Citation
<b> Bold for style
<storng> Bold for emphasis
<i> Tilt for style
<em> Tilt to emphasize content
code Code Identification
abbr abbreviation

Example

Think of the page you build as a book, with the semantics of the tags corresponding to their functions and meanings;

Book title: <h1>
Chapter titles of the book: <h2>
Article title within section: <h3>
Subtitle/Subtitle: <h4> <h5> <h6>
Chapter paragraphs: <p>

HEAD
Document Type

Adding a standards mode declaration to the first line of every HTML page ensures consistent behavior in every browser.

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html >   
  2. Language attributes
  3.   
  4. <!-- Chinese -->   
  5. < html   lang = "zh-Hans" >   
  6.   
  7. <!-- Simplified Chinese -->   
  8. < html   lang = "zh-cmn-Hans" >   
  9.   
  10. <!-- Traditional Chinese -->   
  11. < html   lang = "zh-cmn-Hant" >   
  12.   
  13. <!-- English -->   
  14. < html   lang = "en" >   

Character encoding

Use utf-8 encoding without BOM as the file format;
The meta element specifying the character encoding must be the first direct child element of the head element.

XML/HTML CodeCopy content to clipboard
  1. < html >   
  2.    < head >   
  3.      < meta   charset = "utf-8" >   
  4. ......
  5.    </ head >   
  6.    < body >   
  7. ......
  8.    </ body >   
  9. </ html >   

IE compatibility mode

Give priority to using the latest versions of IE and Chrome kernel.

XML/HTML CodeCopy content to clipboard
  1. < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge,chrome=1" >   

SEO Optimization

XML/HTML CodeCopy content to clipboard
  1. < head >   
  2.      < meta   charset = "utf-8" >   
  3.      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge,chrome=1" >   
  4.      <!-- SEO -->   
  5.      < title > Style Guide </ title >   
  6.      < meta   name = "keywords"   content = "your keywords" >   
  7.      < meta   name = "description"   content = "your description" >   
  8.      < meta   name = "author"   content = "author,email address" >   
  9. </ head >   

viewport

Viewport: generally refers to the size of the browser window content area, excluding toolbars, tabs, etc.
Width: browser width, the width of the visible area of ​​the page in the output device;
device-width: device resolution width, the visible width of the output device screen;
initial-scale: initial scaling ratio;
maximum-scale: maximum zoom ratio;
Optimize for mobile devices, set the width of the visible area and the initial zoom ratio.

XML/HTML CodeCopy content to clipboard
  1. < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >   

iOS Icons

The apple-touch-icon image is automatically processed with rounded corners and highlights;
apple-touch-icon-precomposed disables the system from automatically adding effects and directly displays the original design;

XML/HTML CodeCopy content to clipboard
  1. <!-- iPhone and iTouch, default 57x57 pixels, required -->   
  2. < link   rel = "apple-touch-icon-precomposed"   href = "/apple-touch-icon-57x57-precomposed.png" >   
  3.   
  4. <!-- iPad, 72x72 pixels, optional but recommended -->   
  5. < link   rel = "apple-touch-icon-precomposed"   href = "/apple-touch-icon-72x72-precomposed.png"   sizes = "72x72" >   
  6.   
  7. <!-- Retina iPhone and Retina iTouch, 114x114 pixels, optional but recommended -->   
  8. < link   rel = "apple-touch-icon-precomposed"   href = "/apple-touch-icon-114x114-precomposed.png"   sizes = "114x114" >   
  9.   
  10. <!-- Retina iPad, 144x144 pixels, optional but recommended -->   
  11. < link   rel = "apple-touch-icon-precomposed"   href = "/apple-touch-icon-144x144-precomposed.png"   sizes = "144x144" >   

favicon

When no favicon is specified, most browsers will request favicon.ico in the root directory of the Web Server. To ensure that the favicon is accessible and avoid 404, you must follow one of the following two methods:

Place the favicon.ico file in the Web Server root directory;
Use link to specify favicon;

XML/HTML CodeCopy content to clipboard
  1. < link   rel = "shortcut icon"   href = "path/to/favicon.ico" >   

HEAD Template

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE html >   
  2. < html   lang = "zh-cmn-Hans" >   
  3. < head >   
  4.      < meta   charset = "utf-8" >   
  5.      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge,chrome=1" >   
  6.      < title > Style Guide </ title >   
  7.      < meta   name = "description"   content = "No more than 150 characters" >   
  8.      < meta   name = "keywords"   content = "" >   
  9.      < meta   name = "author"   content = "name, [email protected]" >   
  10.   
  11.      <!-- Add viewport for mobile devices -->   
  12.      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >   
  13.   
  14.      <!-- iOS Icon -->   
  15.      < link   rel = "apple-touch-icon-precomposed"   href = "/apple-touch-icon-57x57-precomposed.png" >   
  16.   
  17.      < link   rel = "alternate"   type = "application/rss+xml"   title = "RSS"   href = "/rss.xml"   />   
  18.      < link   rel = "shortcut icon"   href = "path/to/favicon.ico" >   
  19. </ head >   

HTML Comments

Module comments

XML/HTML CodeCopy content to clipboard
  1. <!-- Article list module -->   
  2. < div   class = "article-list" >   
  3. ...
  4. </ div >   
  5. Block Comments
  6. <!--
  7. @name: Drop Down Menu
  8. @description: Style of top bar drop down menu.
  9. @author: Ashu([email protected])
  10. -- >   

<<:  Detailed explanation of global parameter persistence in MySQL 8 new features

>>:  Introduction to Sublime Text 2, a web front-end tool

Recommend

Summary of various postures of MySQL privilege escalation

Table of contents 1. Write Webshell into outfile ...

Super detailed MySQL usage specification sharing

Recently, there have been many database-related o...

Summary of various methods for Vue to achieve dynamic styles

Table of contents 1. Ternary operator judgment 2....

Ten popular rules for interface design

<br />This is an article I collected a long ...

Causes and solutions for MySQL master-slave synchronization delay

For historical reasons, MySQL replication is base...

Detailed installation process of MySQL5.6.40 under CentOS7 64

MySQL5.6.40 installation process under CentOS7 64...

WeChat applet realizes multi-line text scrolling effect

This article example shares the specific code for...

How to view the docker run startup parameter command (recommended)

Use runlike to view the docker run startup parame...

Suggestions on creating business HTML emails

Through permission-based email marketing, not onl...

Research on the Input Button Function of Type File

<br />When uploading on some websites, a [Se...

Introduction to the usage of props in Vue

Preface: In Vue, props can be used to connect ori...

Script to quickly list all host names (computer names) in the LAN under Linux

Recently, I have a need to list all host names in...