To improve the performance of web pages, many developers start from multiple aspects such as JavaScript, image optimization, server configuration, file compression or adjusting CSS. It's clear that HTML has reached a bottleneck, even though it is the core language required to develop Web interfaces. The load of HTML pages is also getting heavier. Most pages require an average of 40K of space. Some large websites may contain thousands of HTML elements, so the page size will be larger. How to effectively reduce the complexity of HTML code and the number of page elements? This article mainly solves this problem and introduces from multiple aspects how to write concise and clear HTML code, which can make the page load faster and run well on multiple devices. The following principles need to be followed during the design and development process:
The relationship between HTML, CSS and JavaScript HTML is a markup language used to coordinate the structure and content of web pages. HTML cannot be used to modify style content, nor can text content be entered in the head tag, which makes the code lengthy and complicated. Instead, it is more appropriate to use CSS to modify layout elements and appearance. The default appearance of HTML elements is defined by the browser's default style sheet. For example, in Chrome, the h1 tag element will be rendered as 32px Times bold. Three general design rules:
The document structure can also be optimized as follows: 1. Use HTML5 document type. The following is an empty file: XML/HTML CodeCopy content to clipboard
2. Reference the CSS file at the beginning of the document as follows: XML/HTML CodeCopy content to clipboard
With both methods, the browser will prepare the CSS information before parsing the HTML code. Therefore, it helps improve page loading performance. Entering JavaScript code before the body closing tag at the bottom of the page will help speed up page loading because the browser will load the page before parsing the JavaScript code. Using JavaScript will have a positive impact on page elements. XML/HTML CodeCopy content to clipboard
Using the Defer and async attributes, script elements with the async attribute are not guaranteed to be executed in order. Handlers can be added in JavaScript code. Never add it to HTML inline code, such as the following code, which is prone to errors and difficult to maintain: index.html: XML/HTML CodeCopy content to clipboard
The following is better: index.html: XML/HTML CodeCopy content to clipboard
js/local.js: JavaScript CodeCopy content to clipboard
verify One way to optimize web pages is to enable browsers to handle illegal HTML code. Legal HTML code is easy to debug, takes up less memory, consumes less resources, is easy to parse and render, and runs faster. Illegal HTML code makes it extremely difficult to implement responsive design. When using templates, legal HTML code is extremely important. It often happens that a template runs well alone, but when integrated with other modules, various errors are reported. Therefore, the quality of HTML code must be guaranteed. The following measures can be taken:
Code format Format consistency makes HTML code easy to read, understand, optimize, and debug. Semantic markup Semantics refers to things that are related in meaning, and HTML can be seen in the semantics of the page content: the naming of elements and attributes to some extent expresses the role and function of the content. HTML5 introduces new semantic elements such as <header>, <footer>, and <nav>. Choosing the right elements to write your code ensures that it is easy to read:
For example: XML/HTML CodeCopy content to clipboard
It would be better to write it another way: 1: <div> To improve the performance of HTML code, follow the principle that HTML code should be designed for functionality rather than style.
CSS Although this article is about optimizing HTML, here are some basic skills for using CSS:
The above are the tips for optimizing HTML code introduced in this article. A high-quality and high-performance website often depends on the handling of details. |
<<: How to remove the dotted border when clicking a link in FireFox
>>: How to use the VS2022 remote debugging tool
JavaScript clothing album switching effect (simil...
1. Find mysqldump.exe in the MySQL installation p...
Detailed example of clearing tablespace fragmenta...
Why do we need to build a nexus private server? T...
This article example shares the specific code of ...
Preface I recently encountered a problem at work....
Table of contents 1. Realistic Background 2. Agre...
What is a container data volume If the data is in...
Here is a brief introduction to indexes: The purp...
A frame is a web page screen divided into several ...
Preface In the process of developing a mini progr...
Table of contents 1. Install the proxy module 2. ...
The company had a well-configured server that was...
Table of contents Optimizing sorting queries Avoi...
· 【Scene description】 After HTTP1.1, the HTTP pro...