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 自分的備忘録

Last updated at Posted at 2024-09-18

head

  • ウェブサイトの情報や、装飾用のCSSファイルの情報を記載する部分
  • ここに記述した情報は画面上に表示されない

body

  • 画面上に表示したい情報を記載する部分
<!DOCTYPE HTML>
<html>
  <head>
  </head>
  <body>
  </body>
</html>

head要素について

meta要素

  • HTML文章に関する情報を指定する時に使用
  • 終了タグはなし

charset属性

  • メタ要素にて、どのような文字コードを用いるか示すことができる属性
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="UTF-8">
    <title>ウェブサイトのタイトル</title>
  </head>
  <body>

body要素について

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?