0
1

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

Posted at

#基本

  • head-文章の情報
  • body-文章
  • <>始まり、>終わり
  • tabで下げる
  • !DOCTYP html は必ず入れる 
  • lang=""言語を表す

##head

  • titleは上に出るやつ
  • meta charsetは文字コードの指定 ex)utf8
  • 文字化けしているときはここが間違っている可能性あり
  • 全角空白要注意
  • meta name と meta content
    • 検索結果に表示されたりする
  • ホームページのアイコン
    • link rel shortcut icon, href favicon.ico
  • コメント
    • 動作に影響しない

#body

  • グローバル要素

    • id 1つしかない要素
    • classs 複数ある要素
    • style スタイルを決定する要素
    • header
    • footer
    • nav ナビゲーション
    • article 独立しているコンテンツ
    • aside 副次的なコンテンツ
    • section それ以外の情報の塊。見出しあり
    • h1-h6 sectionの見出し

    アウトラインを意識することが大切

  • sectionよりも細い要素

    • p パラグラフ
    • hr 水平線 区切りのライン
    • pre 改行・字下げの保持
    • blockquote 引用
    • div スタイリング
  • リスト

    • ol 順序あるリスト
    • ul 箇条書きリスト
    • li リストのアイテム
    • dl 定義づけリスト
    • dt 定義の用語
    • dd 定義の内容
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?