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

基本中の基本HTMLタグ一覧

Last updated at Posted at 2020-04-22

筆者はプログラミング歴1年の新参者です。
今までアプリ開発の仕事をしていたのですが、コロナショックで凍結になり、Web関連に異動することになりました。

そこで、逃げていたHTMLの学習をしています。

備忘録にHTMLのタグ一覧を投稿します。

#HTMLのタグ一覧

  • <h></h>
     見出し。覚え方はHead

  • <p></p>
     段落。覚え方はparagraph(パラグラフのP)

  • <!-- -->
    コメント。覚え方は得になし。

  • <a></a>
    リンクを貼る。

    • <a href="url"> URLを貼りつけ出来る
  • <img>
    イメージを添付出来る。</>←終了タブは不要

    • <img src="url"> イメージのURLを貼りつけ出来る
  • <li></li>
    リスト。覚え方はList

  • <ul></ul>
    リストを囲むタグ(ネスト)。●(黒丸)で<li></li>のタグをリスト化出来る

  • <ol></ol>
    リストを囲むタグ(ネスト)。数字(連番)で<li></li>のタグをリスト化出来る

  • <div></div>
    レイアウトを分割するタグ。

 随時更新していきます。

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?