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 5 years have passed since last update.

HTMLタグ_1はじめに(覚書)

Last updated at Posted at 2019-04-17

#HTMLタグ−1

:ファイルがHTMLで書かれた文書であることを示す。

<html> </html> :HTML文書の始まりと終わりを示す。

<head> </head> :ページのタイトルや文字コードを記載。
            ・ブラウザのウインドウ内には表示されない。

<meta charset="utf-8"> :メタタグ utf-8文字コード

<title> </title> :ウィンドウの一番上のタイトルバーあるいはタブの部分に表示される
            
<body> </body> :ブラウザ画面に表示される文字や画像など本体

<h1> </h1> : 見出し h1〜h6まで

<p> </p> : パラグラフ

<hr> : 横線(区切り)

<!-- コメント -->

#記述例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>タイトル</title>
</head>
<body>
  <h1>見出し1</h1>
  <p>本文</p> 
  <hr>
       <!-- コメント -->
   <h2>見出し2</h2>
   <p>本文</p>
</body>
</html>

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?