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?

More than 1 year has passed since last update.

HTML、CSS、JavaScriptのファイルをリンクさせる方法

Last updated at Posted at 2021-11-23

#はじめに
Webサイトの開発をやっているとHTML、CSS、JavaScriptのファイルを主に扱うのですが、その3つのファイルをリンクさせて、HTMLに適用する方法を紹介したいと思います。

#環境
Mac OS Monterey
MacBook Pro M1

VS Code

#本編
主にHTMLのファイルにCSS、JavaScriptを適用させる感じです。

##HTMLとCSS
head上にこのように記載します。

<link rel="stylesheet" href="ファイル名.css">

##HTMLとJavaScript
bodyタグの一番最後にこのように付け足します。

<script type="text/javascript" src="ファイル名.js"></script>

これで完了です。

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?