Using different methods to reference CSS style sheets will ultimately achieve the same effect, but using different methods to apply CSS files will affect SEO and the speed and efficiency of web page opening. The html reference css method is as follows Next we will explain the examples of HTML referencing CSS methods one by one 1. Embed CSS styles directly in HTML tag elements For example, <div style="font-size:14px; color:#FF0000;">I am div css test content-www.jb51.net support</div> The effect is as follows 2. Style declaration in the head section of HTMLThe insertion code is as follows: <style type="text/css"> <!-- .ceshi {font-size:14px; color:#FF0000;}/*Here is the CSS style content*/ --> </style> The specific method is as follows: 3. Use @import to reference external CSS files<!doctype html> <html> <head> <meta charset="utf-8"> <title>123WORDPRESS.COM test</title> <style type="text/css"> <!-- @import url(wcss.css);/*Here is the CSS style content referenced by @import*/ --> </style> </head> <body> <div class="ceshi">I am div css test content-www.jb51.net support</div> </body> </html> Code in Wcss.css file.ceshi {font-size:14px; color:#FF0000;} The effect is as follows: It can be seen that using this method is similar to using the built-in CSS style sheet method, both of which require using the style tag in the HTML head to reference external CSS. 4. Use link to call external css filesPlace <link rel="stylesheet" href="wcss.css" type="text/css" /> in the head to call the external wcss.css file to implement HTML reference CSS file Details as shown below This method does not require a style tag, but directly references an external style by linking a style. It is generally recommended to use link to reference external CSS style methods. Advantages of using link to reference external CSS 1. It is beneficial to SEO. Using this method to reference external CSS files will make the source code of the HTML page much less than directly adding CSS styles. Because search engine spiders do not crawl CSS files when crawling web pages, this makes the HTML source code very small, allowing spiders to crawl faster and process less, increasing the weight of this web page, which is beneficial to ranking. Here are some additional In HTML, there are three main ways to introduce CSS: inline, embedded, imported, and linked. example: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Text Demo</title> </head> <body> <h1 style=color:white;background-color=blue;> This is a line of Text. </h1> </body> </html> Embedded: Embedded writes the settings of various elements in the page between <head> and </head>. This method is very convenient for a single web page. However, for a website with many pages, if each page sets its own style in an embedded manner, the great advantages brought by CSS will be lost. Therefore, a website usually writes an independent CSS style sheet file and introduces it into the HTML document using one of the following two methods. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Text Demo</title> <style type="text/css"> h1{ color:white; background-color:boue; } </style> </head> <body> <h1>This is a line of Text.</h1> <h1>This is another line of Text.</h1> </body> </html> Import and link: The purpose of both import and link is to introduce an independent CSS file into the HTML file, and there are corresponding differences between the two. <link href="mystyle.css" rel="stylesheet" type="text/css" /> If you use the import method, you need to use the following statement.
In addition, the display effects after using these two methods are slightly different. When using the link method, the CSS file will be loaded before the main part of the device page, so that the displayed web page will have a style effect from the beginning. When using the import method, the CSS file will be loaded after the entire page is loaded. For some browsers, in some cases, if the web page file is large, the unstyled page will be displayed first, and then the style setting effect will appear after flashing. From the viewer's perspective, this is a drawback of using the import method. For some larger websites, you may want to categorize all CSS styles into several CSS files for ease of maintenance. In this case, if you use link-style import, you will need several statements to import the CSS files separately. If you want to adjust the classification of the CSS file, you need to adjust the HTML file at the same time. This is a disadvantage for maintenance work. If you use the import method, you can only introduce one main CSS file, and then import other independent CSS files in this file; the link method does not have this feature. Therefore, my suggestion is that if you need to import a CSS file, use the link method; if you need to import multiple CSS files, first use the link method to import a "directory" CSS file, and then use the import method to import other CSS files in this "directory" CSS file. If you want to use JavaScript to dynamically decide which CSS file to import, you must use the link method to achieve it. |
<<: Example of MySQL slow query
>>: Docker renames the image name and TAG operation
1. Introduction Docker has an orchestration tool ...
Table of contents Overview The role of reverse pr...
Table of contents Problem Description Scenario In...
Permission denied: The reason for this is: there ...
The data type of MySQL is datetime. The data stor...
I have encountered many problems in learning Dock...
Enable the service when you need it, and disable ...
Download the official website Choose the version ...
Table of contents Background 1. Thought Analysis ...
Table of contents What is nodejs Install NodeJS H...
<br />Structure and hierarchy reduce complex...
There are many purposes for exporting MySQL data,...
What is a directive? Both Angular and Vue have th...
Table of contents After creating a container loca...
Table of contents 1. Create a socket 2. Bind sock...