0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【HTML】link要素

Posted at

CSSファイルを読み込む要素
⇒link

link要素は、外部リソースとの関係を示すための要素です。
一般的にCSSファイルの読み込みに使用されます。

CSSファイルを読み込む記述例を以下に示します。

<link href="style.css" rel="stylesheet">

href(hypertext reference)属性には読み込むリソースのURLを指定します。
rel(relation)属性は、外部リソースとの関係を表します。
読み込むファイルがCSSファイルの場合は、stylesheetを記述します。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?