1
4

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基礎まとめ

Last updated at Posted at 2019-03-18

0.背景~

Webアプリが作るために、約15年ぶりに触れるHTMLをおさらい。
但し、最低限使うだろう部分に限定して記載します。

1.基本フォーマット

HTMLの基本的なフォーマット
index.html
<!DOCTYPE html>           ←ドキュメント形式
<html lang="ja">          ← HTML開始 (日本語)
  <head>               ← ヘッダ情報
    <meta charset="utf-8">                              ← 文字コード指定
    <title> サイトのタイトル </title>                    ← タイトル
    <meta name="description" content="サイトの説明">     ← サイト情報
  </head>
  <body>                  ← ボディ情報
    <h1> 見出し1 </h1>    ← 見出しサイズ:1~6
    <p> 内容 </p>
  </body>
</html>               ← HTML終了

2.リストの書き方

(1) Ordered List:番号付きのリスト ol.PNG
<ol>
 <li>item1</li>
 <li>item2</li>
 <li>item3</li>
</ol>

(2) Unordered List:番号無しのリスト
ul.PNG

<ul>
 <li>item1</li>
 <li>item2</li>
 <li>item3</li>
</ul>

3.コントロールアイテム

input_text.PNG
<form>
  <label for="name">氏名</label>     ← ラベル
  <input type="text" id="name">      ← 入力フォーム
</form>
input_message.PNG
<form>
  <label for="message">メッセージ</label>     ← ラベル
  <textarea id="message"></textarea>         ← 入力フォーム
</form>
button.PNG
<form>
  <button>送信</button>     ← ボタン
</form>
select.png
<label for="product">商品</label>
<select id="product">
  <option>商品A</option>
  <option>商品B</option>
  <option>商品C</option>
</select>
checkbox.PNG
<fieldset>
  <legend>items</legend>
  <input type="checkbox" id="item1"><label for="item1">item1</label>
  <input type="checkbox" id="item2"><label for="item2">item2</label>
  <input type="checkbox" id="item3"><label for="item3">item3</label>
</fieldset>
radioPNG.PNG
<fieldset>
  <legend>items</legend>
  <input type="radio" name="items" id="item1"><label for="item1">item1</label>
  <input type="radio" name="items" id="item2"><label for="item2">item2</label>
  <input type="radio" name="items" id="item3"><label for="item3">item3</label>
</fieldset>

情報ソース

1
4
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
1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?