."/> .">
Home > Article > Web Front-end > How to connect html to css
HTML connects to CSS via the <link> tag. The tag's rel attribute is set to "stylesheet" and the href attribute specifies the path to the CSS file. The steps include: creating a CSS file, writing style rules, and connecting the CSS file to the HTML document. The specific syntax is: .
HTML How to connect CSS
Connecting CSS in HTML can be done through<link>
tag implementation. The <link>
tag is used to introduce external resources, such as CSS style sheets, into HTML documents.
Syntax:
<code class="html"><link rel="stylesheet" href="style.css"></code>
Attribute description:
Connection steps:
.css
as the extension (for example: style.css
). <link>
tag inside the <head>
tag, And specify the rel="stylesheet"
and href
attributes. Example:
<code class="html"><!DOCTYPE html> <html> <head> <title>HTML 和 CSS</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1>标题</h1> <p>段落文本</p> </body> </html></code>
In the above example:
style.css
is CSS The name of the file.
tag connects a CSS file to an HTML document. style.css
. The above is the detailed content of How to connect html to css. For more information, please follow other related articles on the PHP Chinese website!