"; 2. Use "@import url(CSS file path address) in the style tag )" statement is called."/> "; 2. Use "@import url(CSS file path address) in the style tag )" statement is called.">

Home >Web Front-end >HTML Tutorial >How to call external css in html

How to call external css in html

青灯夜游
青灯夜游Original
2021-07-05 14:40:2013405browse

Calling method: 1. Use the statement "2a8c74d580a64074a79de85b55819524"; 2. Use " @import url (CSS file path address)" statement call.

How to call external css in html

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

There are two ways for html to call external css

  • Link style--use the 2cdf5bf648cf2f33323966d7f58a7f3f tag

  • Import type--Use the @import rule tag

1. Link type

In the 93f0f5c25f18dab9d176bd4f6de5d30e< of the web page Use the 2cdf5bf648cf2f33323966d7f58a7f3f tag in the /head> tag pair to introduce external style sheet files, and use html rules to introduce external css.

Syntax:

<link rel="stylesheet" href="css文件路径" type="text/css" />

2cdf5bf648cf2f33323966d7f58a7f3f The tag defines the relationship between the document and external resources. The most common use of the 2cdf5bf648cf2f33323966d7f58a7f3f tag is to link style sheets.

2. Imported

CSS @import rules are used to import style rules from other style sheets. These rules must precede all other types of rules, and @import cannot be used in rules of a conditional group.

Introduce an independent .css file into the HTML file, use the css @import rule to introduce the external css file, write it in the c9ccee2e6ea535a969eb3f532ad9fe89 tag of the 93f0f5c25f18dab9d176bd4f6de5d30e tag

Syntax:

<style type="text/css">
@import url(CSS文件路径地址);
</style>

Compare the link method and the import method

The link method (replaced by link below) and the import method (replaced by @import below) both introduce external CSS files method, let’s compare these two methods below.

link belongs to HTML, and external files are introduced through the href attribute in the 2cdf5bf648cf2f33323966d7f58a7f3f tag, while @import belongs to CSS, so the import statement should be written in CSS. It should be noted that the import statement should be written in the style at the beginning of the table, otherwise external files cannot be imported correctly;

@import is a concept that only appeared in CSS2.1, so if the browser version is lower, external style files cannot be imported correctly;

When When the HTML file is loaded, the file referenced by link will be loaded at the same time, while the file referenced by @import will wait until the page is completely downloaded before being loaded;

Recommended tutorial: "html video tutorial

The above is the detailed content of How to call external css in html. For more information, please follow other related articles on the PHP Chinese website!

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