search
HomeWeb Front-endHTML TutorialHTML Code Writing Standard Guide_HTML/Xhtml_Web Page Production

General Conventions
Tag

Self-closing tag, no need to close (for example: img input br hr, etc.);
Optional closing tag (closing tag), need to close (for example: or );
Reduce the number of tags as much as possible;

XML/HTML CodeCopy content to clipboard
  1. img src="images/google.png " alt="Google">
  2. input type="text" name="title">
  3. ul>
  4. li>Styleli> 
  5. li>Guideli> 
  6. ul>
  7. span class="avatar" >
  8. img src=".. ."> 
  9. span>
  10. img class="avatar" src="...">

Class and ID

class should be named after function or content, not expression;
class and id should be in lowercase letters, and when composed of multiple words, use dash-separation;
use a unique id as a Javascript hook , and avoid creating classes without style information;

XML/HTML CodeCopy content to clipboard
  1. div class="j- hook left contentWrapper">div>
  2. 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. a id="..." class="..." data-modal="toggle" href="###"> a>
  2. input class="form- control" type="text">
  3. img src=".. ." alt="...">

Quotation marks

Uniformly use double quotes for the definition of attributes.

XML/HTML CodeCopy content to clipboard
  1. span id='j- hook' class=text>Google span>
  2. span id="j- hook" class="text">Googlespan> 

b Nested

a does not allow nesting of divs. This constraint is a semantic nesting constraint. Different constraints include strict nesting constraints. For example, a does not allow nesting of a.

Strict nesting constraints are not allowed in all browsers; as for semantic nesting constraints, most browsers will handle fault tolerance, and the generated document trees may be different from each other.

Semantic Nesting Constraints

  • used under
      or
      ;
      ,
      used under
      ;
      , , , , are used under ;


      Strict nesting constraints

      inline-Level elements can only contain text or other inline-Level elements; interactive elements ,

      标签 语义

      段落

      ...

      标题
        无序列表
          有序列表
          大段引用
          一般引用
          为样式加粗而加粗
          为强调内容而加粗
          为样式倾斜而倾斜
          为强调内容而倾斜
          code 代码标识
          abbr 缩写
          Tag
          Semantics

          Paragraph

          ...

          Title
            Unordered list
              Ordered list
              Long quote
              General quotations
              Bold for style bold
              Bold to emphasize content
              Tilt for style tilt
              Tilt to emphasize content
              code Code identification
              abbr Abbreviation

              Example

              Treat the page you build as a book, and map the semantics of tags to their functions and meanings;

              Name of the book:


              Title of each chapter of the book:


              Title of the article within the chapter:


              Subtitle/Subtitle:


              Chapter paragraph:

              HEAD
              Document Type

              Add a standard mode declaration to the first line of each HTML page to ensure consistent performance in each browser.

              XML/HTML CodeCopy content to clipboard
              1. /span>>
              2. Language attribute
              3. html lang="zh- Hans"> 
              4. html lang="zh- cmn-Hans">
              5. html lang="zh- cmn-Hant">
              6. html lang="en" >

              Character encoding

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

              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

              Prioritize using the latest versions of IE and Chrome kernels.

              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. " " 🎜>
              4.  title>Style Guidetitle>
              5.  
              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 content area of ​​the browser window, 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, visible width of the screen of the output device; initial-scale: initial scaling ratio; maximum-scale: maximum scaling ratio;
              10. optimized for mobile devices, set the width of the visible area and initial scaling.
              11. XML/HTML CodeCopy content to clipboard
                1. meta name="viewport" content="width=device-width, initial-scale=1.0">

              iOS icon

              apple-touch-icon pictures are automatically processed into rounded corners and highlights;
              apple-touch-icon-precomposed prohibits the system from automatically adding effects and directly displays the original design;

              XML/HTML CodeCopy content to clipboard
              1. link rel="apple- touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png">
              2. link rel="apple- touch-icon-precomposed" href="/apple-touch-icon-72x72-precomposed.png" sizes="72x72">
              3. link rel="apple- touch-icon-precomposed" href="/apple-touch-icon-114x114-precomposed.png" sizes="114x114">
              4. link rel="apple- touch-icon-precomposed" href="/apple-touch-icon-144x144-precomposed.png" sizes="144x144">

              favicon

              When favicon is not specified, most browsers will request favicon.ico in the root directory of the Web Server. In order to ensure that the favicon is accessible and avoid 404, one of the following two methods must be followed:

              Place the favicon.ico file in the root directory of the Web Server;
              Use link to specify the 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. 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 Guidetitle>  
              7.     meta name="description" content="不超过150个字符">  
              8.     meta name="keywords" content="">  
              9.     meta name="author" content="name, email@gmail.com">  
              10.   
              11.       
              12.     meta name="viewport" content="width=device-width, initial-scale=1.0">  
              13.   
              14.       
              15.     link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png">  
              16.   
              17.  링크 rel="대체" 유형="application/rss xml" 제목="RSS" href="/rss.xml" /> 
              18.  링크 rel="바로가기 아이콘 " href="path/to/favicon.ico">
              19. 머리>

              HTML 주석

              모듈 설명

              XML/HTML 코드클립보드에 콘텐츠 복사
              1. div class="article- 목록"> 
              2. ...
              3. div>
              4. 댓글 차단
          • Statement
            The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
            HTML超文本标记语言--超在那里?(文档分析)HTML超文本标记语言--超在那里?(文档分析)Aug 02, 2022 pm 06:04 PM

            本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

            html和css算编程语言吗html和css算编程语言吗Sep 21, 2022 pm 04:09 PM

            不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

            web前端笔试题库之HTML篇web前端笔试题库之HTML篇Apr 21, 2022 am 11:56 AM

            总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

            总结HTML中a标签的使用方法及跳转方式总结HTML中a标签的使用方法及跳转方式Aug 05, 2022 am 09:18 AM

            本文给大家总结介绍a标签使用方法和跳转方式,希望对大家有所帮助!

            HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

            HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

            html中document是什么html中document是什么Jun 17, 2022 pm 04:18 PM

            在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

            html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

            html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

            Html5怎么取消td边框Html5怎么取消td边框May 18, 2022 pm 06:57 PM

            3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

            See all articles

            Hot AI Tools

            Undresser.AI Undress

            Undresser.AI Undress

            AI-powered app for creating realistic nude photos

            AI Clothes Remover

            AI Clothes Remover

            Online AI tool for removing clothes from photos.

            Undress AI Tool

            Undress AI Tool

            Undress images for free

            Clothoff.io

            Clothoff.io

            AI clothes remover

            AI Hentai Generator

            AI Hentai Generator

            Generate AI Hentai for free.

            Hot Article

            R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
            2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
            R.E.P.O. Best Graphic Settings
            2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
            R.E.P.O. How to Fix Audio if You Can't Hear Anyone
            2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

            Hot Tools

            Dreamweaver Mac version

            Dreamweaver Mac version

            Visual web development tools

            SublimeText3 Chinese version

            SublimeText3 Chinese version

            Chinese version, very easy to use

            SAP NetWeaver Server Adapter for Eclipse

            SAP NetWeaver Server Adapter for Eclipse

            Integrate Eclipse with SAP NetWeaver application server.

            Safe Exam Browser

            Safe Exam Browser

            Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

            VSCode Windows 64-bit Download

            VSCode Windows 64-bit Download

            A free and powerful IDE editor launched by Microsoft