search
HomeWeb Front-endHTML TutorialWrite high-performance HTML applications

How can you improve web page performance?

Most developers will optimize through JavaScript and images, through server configuration, compressing files and merging files - even adjusting CSS (merging small images).

Poor HTML is always ignored, even though it has always been the core language of the Internet.

HTML is getting bigger and bigger. Each HTML page of the top 100 websites is mostly around 40K. Amazon and Yahoo use thousands of HTML pages. On the main page of youtube.com, there are as many as 3,500 HTML elements.

Reducing the complexity of HTML and the number of elements on a page does not significantly improve parsing time - but HTML is a critical factor in the success of building extremely fast web pages that adapt to different devices.
In this article, you will learn how to write concise and clean HTML, allowing you to create a website that loads quickly and supports multiple devices, and will be easy to debug and maintain.

There is no one way to write code - especially HTML. This is just a general experience, but it is not the only right choice.
HTML, CSS and JavaScript

HTML is a markup language used to represent structure and content.

HTML should not be used to display styles and styles. Don’t put text in title tags (h1~h6) to appear “bigger” or use blockquotes elements just for indentation. Instead, use CSS to change the appearance and layout of elements.

The default appearance of HTML elements is achieved through the browser's default style: Firefox, Internet Explorer and Opera are all different. For example, in Chrome the h1 element is rendered to a size of 32px by default.

  Three basic principles:

Use HTML to express structure, and CSS to express different styles and themes. JavaScript to respond to user actions.

Use HTML, CSS when necessary, and JavaScript when necessary. For example: In many cases, you might use HTML forms for validation and CSS or SVG for animations.

Separate CSS and JavaScript from your HTML code. Making them cacheable makes the code easier to debug. In production, CSS and JavaScript can be minified and merged and should be included as part of your Build system. Note* See JavaScript Construction (Compilation) System Competition
Document document structure

Use HTML5 document type:

<!DOCTYPE html>
<html>
<head>
 <title>Recipes: pesto</title>
</head>
<body>

  <h1 id="Pesto">Pesto</h1>
  <p>Pesto is good!</p>

</body>
</html>


At the top of the page Reference the CSS file internally, such as in the head element:

<head>   
  <title>My pesto recipe</title>   
  <link rel="/css/global.css">   
  <link rel="css/local.css">   
</head>


In this way, the browser can preload the style before parsing the HTML without rendering a confusing page layout.

Place JavaScript at the very bottom of the page, before the body is closed. This will improve page rendering time because the browser can render the page before the JavaScript is loaded:

<body>   
  ...   
  <script src="/js/global.js">   
  <script src="js/local.js">   

</body>

Add event handling in JavaScript. Don't add it in HTML. This is very difficult to maintain, such as:

index.html:   

<head>
  ...   
  <script src="js/local.js">

</head>

<body onload="init()">
  ...   
  <button onclick="handleFoo()">Foo</button>
  ...   
</body>


This is much better:

<head>   
  ...   
</head>   

<body>   
  ...   
  <button id="foo">Foo</button>   
  ...   
  <script src="js/local.js">   
</body>   

  js/local.js:   

init();   
var fooButton =   
    document.querySelector(&#39;#foo&#39;);   
fooButton.onclick = handleFoo();


Legal HTML

A major factor in the success of web pages is that browsers can handle invalid HTML. Browsers also have some standardized rules for how to render invalid code.

However, this is no reason for you to let it go. Valid HTML is easier to debug, tends to have smaller file sizes, is faster, and uses fewer resources because it renders faster. Invalid HTML makes responsive design difficult to implement.

It is especially important to write valid HTML when using templates.

Validate HTML in your BUILD system: Use validation plugins such as HTMLHint and SublimeLinter to check the syntax of your HTML.

Use HTML5 document type.

Be sure to keep your HTML hierarchical: nest elements correctly and make sure there are no unclosed elements. It helps debuggers add comments.

<p id="foobar">
...   
</p> <!-- foobar ends -->


Please be sure to add a closing tag after the non-self-closing element. For example, the following will also work:

<p>Pesto is good to eat...   
<p>...and pesto is easy to make.

But the following will work Avoid mistakes and make paragraph hierarchy more obvious:

Pesto is good to eat...


...and pesto is easy to make .

The items element (li) does not have to be closed. Some very smart programmers will write it like this. However, the list element (ul) must be closed.

<ul>
  <li>Basil   
  <li>Pine nuts   
  <li>Garlic   
</ul>


One thing you must pay attention to is the video and audio elements. They are not self-closing:

<!-- 错误: liable to cause layout grief -->
<video src="foo.webm" />

<!-- 正确 -->
<video src="foo.webm">
  <p>Video element not supported.</p>
</video>


Instead, the HTML page will become cleaner by removing unnecessary code

There is no need to add for self-closing elements "/", like img, etc.

Setting attributes has no value. If no attributes are added (in this case, it will not play automatically and there is no control control),

Video, It does not have any attributes

<video src="foo.webm">


The following two are better

<video src="foo.webm" autoplay="false" controls="false">
<video src="foo.webm" autoplay="true" controls="true">


This one is more readable

<video src="foo.webm" autoplay controls>


The stylet and script tags do not require the type attribute; the default is css and javascript

It is better to optimize the protocol address (remove http or https, it will Automatically configured according to the current protocol)

<a href="//en.wikipedia.org/wiki/Tag_soup">Tag soup</a>


  增强可读性,如,第一眼看上去就像是个标题

<h2><a href="/contact">Contact</a><h2>


  而这种则像个链接

Contact

  应该使用小写

<A HREF="/">Home</A>


  大小写混合看上去更恶心

<h2 id="Pesto">Pesto</h2>


 语义标记

  “语义”意思是跟含义相关

  HTML应该标记有意义的内容:元素和描述的内容相符。

  HTML5引入了一些新的‘语义元素’像

,

  使用正确的元素表达正确的内容对于可访问性是有帮助的。

  使用

,

代表标题,
    代表lists

      注意

    的标题应该以

    开始

      使用

    ,
    ,

      使用

    写正文

      使用 代替 表示强调

      表单使用

      混合文字和元素会导至布局的问题

    <p>Name: <input type="text"></p>


      最好用下面的表示

    <p><label>Name:</label><input type="text"></p>


     布局

      HTML应该使用有意义的组织结构,而不是通过样式来实现。

      使用

    元素代表文本,而不是用来布局。

      避免使用
    来换行,使用块级元素和CSS来代替。

      避免使用水平分隔线


    。使用CSS的border样式来控制。

      不要使用不必要的p。W3C对p的定义是排序的是最后一个元素。

      要了解哪些元素是块级元素,避免在p中放置不必要的块级元素。将一个list放到p中是没有必要的。

      不要使用table来布局。

      Flex box是被广泛推荐的,能用就用吧。

      使用CSS的padding和margin,理解盒子模型。
     CSS

      这篇文章是关于HTML的,但是这里有一些基本的CSS小贴士。

      避免内嵌的CSS。出于性能考虑,CSS可以在BUILD时内嵌到你的网页中。

      避免ID出现重复。

      如果你想对多个元素应用某个样式,那么请使用class,在父级元素上使用class比在子级上好:

    <!-- 有点笨 :( -->
    <ul>
      <li class="ingredient">Basil</li>
      <li class="ingredient">Pine nuts</li>
      <li class="ingredient">Garlic</li>
    </ul>
    
    <!-- 更好 :) -->
    <ul class="ingredients">
      <li>Basil</li>
      <li>Pine nuts</li>
      <li>Garlic</li>
    </ul>


     可访问性

      使用语义元素

      提供向后兼容

      在链接上添加title属性,而且应该避免与link文本出现相同的内容

      在输入元素上添加type和placeholder属性


    更多编写高性能HTML应用相关文章请关注PHP中文网!


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 Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft