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を復習①

Posted at

★Progateの初級でよく使ったHTML一覧

  • 1.見出し

見出しは基本的に段落が発生する。画面の主となるメッセージなどに用いる。

<h1>見出し1</h1>
<h2>見出し2</h2>
<p>段落</p>

見出し1

見出し2

段落

  • 2.リンクの作成

リンク作成時は<a>要素と、URLと文字を用意する。
 ※URLはダブルクォーテーション(")で囲むこと

<a href="https://twitter.com/?lang=ja">ツイッター</a>

ツイッター

  • 3.img画像の貼り付け

<img>要素とimg画像のURLを用意する。
 ※img画像のURLはダブルクォーテーションで囲むこと

<img src="http://www.icon-surfer.com/wp-content/uploads/2014/02/1402122.png">
  • 4.リストの作成

囲む要素の内に<li>要素をネストする。
<li>要素は囲む要素によって先頭に・や数字がつく。(その他も可能性あり。)

<ul>
  <li>リスト1</li>
  <li>リスト2</li>
  <li>リスト3</li>
<ul/>
<ol>
  <li>リスト1</li>
  <li>リスト2</li>
  <li>リスト3</li>
<ol/>
  • リスト1
  • リスト2
  • リスト3
      1. リスト1
      2. リスト2
      3. リスト3
      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?