カテゴリー
datetime HTML5 input

input type=”datetime”とは?-HTML

(例)input type=”datetime”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”datetime”とは?-HTML

 input type=”datetime”は、グローバル日時の入力欄を作成するタグです。

name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
HTML5 input password

input type=”password”とは?-HTML

(例)input type=”password”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”password”とは?-HTML

 input type=”password”とは、パスワード入力欄を作成するタグです。
 type=”password”の入力欄に入力すると「●」「*」といった記号に置き換わります。

 name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
email HTML5 input

input type=”email”とは?-HTML

(例)input type=”email”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>
<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”email”とは?-HTML

 input type=”email”は、メールアドレスの入力欄を作成するタグです。
 type=”text”と同様のテキスト欄が作成されます。type=”text”でも代替可能です。type=”email”だからと言って、emailか判別するかどうかはブラウザの仕様で決まります。

 name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
HTML5 input url

input type=”url”とは?-HTML

(例)input type=”url”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”url”とは?-HTML

 input type=”url”は、URLの入力欄を作成するタグです。
 type=”text”と同様のテキスト欄が作成されます。type=”text”でも代替可能です。type=”url”だからと言って、URLか判別するかどうかはブラウザの仕様で決まります。

 name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
HTML5 input tel

input type=”tel”とは?-HTML

(例)input type=”tel”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”tel”とは?-HTML

 input type=”tel”は、電話番号の入力欄が作成されます。
 type=”text”と同様のテキスト欄が作成されます。type=”text”でも代替可能です。

 name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
HTML5 input search

input type=”search”とは?-HTML

(例)input type=”search”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”search”とは?-HTML

 input type=”search”は、検索テキスト入力欄を作成するタグです。

 name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
HTML5 input text

input type=”text”とは?-HTML

(例)input type=”text”の使用方法

See the Pen
form
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
<p><label>氏名:<input type="text" name="name" size="20"></label></p>
<p><label>血液型:
<select name="blood">
<option value="A">A型</option>
<option value="B">B型</option>
<option value="O">O型</option>
<option value="AB">AB型</option>
</select>
</label></p>
<fieldset>
<legend>性別</legend>
<p><label><input type="radio" name="sex" value="male">男性</label></p>
<p><label><input type="radio" name="sex" value="female">女性</label></p>
</fieldset>
<fieldset>
<legend>習慣</legend>
<p><label><input type="checkbox" name="hobby" value="tre">筋トレ</label></p>
<p><label><input type="checkbox" name="hobby" value="reading">読書</label></p>
<p><label><input type="checkbox" name="hobby" value="music">音楽</label></p>
<p><label><input type="checkbox" name="hobby" value="travel">旅行</label></p>
</fieldset>
<p><label>その他:<br><textarea name="comments" rows="2" cols="40"></textarea></label></p>
<p><input type="submit" value="送信"><input type="reset" value="リセット"></p>
</form>

input type=”text”とは?-HTML

 input type=”text”とは、テキストを入力するフォームを作成できるタグです。


 name属性はformデータをサーバー側へ送信した際に必要なため指定してください。size属性により入力欄の表示サイズを指定できますが、CSSでも調整できるため必須ではありません。maxlength属性は入力できる最大文字数を指定することが可能です。

カテゴリー
hidden HTML5 input

input type=”hidden”とは?-HTML

(例)input type=”hidden”の使用方法

See the Pen
input
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
  <input type="hidden" value="test" name="hidden">
  <p>url:<input type="url" name="url"></p>
  <p>tel:<input type="tel" name="tel"></p>
  <p>serch:<input type="search" name="search"></p>
  <p>image:<input type="image" name="image" src="◯◯.jpg" alt="テキスト"></p>
  <p>file:<input type="file" name="file"></p>
  <p>color:<input type="color" name="color"></p>
  <p>range:<input type="range" name="range"></p>
  <p>number:<input type="number" name="number"></p>
  <p>datetime-local:<input type="datetime-local" name="datetime-local"></p>
  <p>time:<input type="time" name="time"></p>
  <p>week:<input type="week" name="week"></p>
  <p>month:<input type="month" name="month"></p>
  <p>date:<input type="date" name="date"></p>
  <p>datetime:<input type="datetime" name="datetime"></p>
  <p>password:<input type="password" name="password"></p>
  <p>email:<input type="email" name="email"></p>
  <p>ボタン:<input type="button" name="button" value="ボタン"></p>
  
</form>

input type=”hidden”とは?-HTML

 input type=”hidden”は、inputタグとして「非表示」データを送信することが可能です。ブラウザ上で非表示となりますが、当然ソースコードとしては見ることが可能です。
 送信したい値をvalue属性で指定し、inputタグのためname属性も指定します。

カテゴリー
HTML5 label

labelタグとは?-HTML

(例)labelタグの使用方法

See the Pen
form
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
<p><label>氏名:<input type="text" name="name" size="20"></label></p>
<p><label>血液型:
<select name="blood">
<option value="A">A型</option>
<option value="B">B型</option>
<option value="O">O型</option>
<option value="AB">AB型</option>
</select>
</label></p>
<fieldset>
<legend>性別</legend>
<p><label><input type="radio" name="sex" value="male">男性</label></p>
<p><label><input type="radio" name="sex" value="female">女性</label></p>
</fieldset>
<fieldset>
<legend>習慣</legend>
<p><label><input type="checkbox" name="hobby" value="tre">筋トレ</label></p>
<p><label><input type="checkbox" name="hobby" value="reading">読書</label></p>
<p><label><input type="checkbox" name="hobby" value="music">音楽</label></p>
<p><label><input type="checkbox" name="hobby" value="travel">旅行</label></p>
</fieldset>
<p><label>その他:<br><textarea name="comments" rows="2" cols="40"></textarea></label></p>
<p><input type="submit" value="送信"><input type="reset" value="リセット"></p>
</form>

labelタグとは?-HTML

 labelタグとは、入力・選択等のフォームと項目(ラベル)を関連付けるタグです。
 フォームとラベルを関連付けるには、labelタグのfor属性とフォームのidによって関連付けるか、labelタグの子要素にフォームを設置するかの2択となります。
 labelタグによるフォームとの関連付けにより、通常のブラウザではラベル部分をクリックするとフォームを選択状態にしたりできます。

カテゴリー
HTML5 legend

legendタグとは?-HTML

(例)legendタグの使用方法

See the Pen
form
by linlin (@linlin098765)
on CodePen.

<form action="◯◯.php" method="post">
<p><label>氏名:<input type="text" name="name" size="20"></label></p>
<p><label>血液型:
<select name="blood">
<option value="A">A型</option>
<option value="B">B型</option>
<option value="O">O型</option>
<option value="AB">AB型</option>
</select>
</label></p>
<fieldset>
<legend>性別</legend>
<p><label><input type="radio" name="sex" value="male">男性</label></p>
<p><label><input type="radio" name="sex" value="female">女性</label></p>
</fieldset>
<fieldset>
<legend>習慣</legend>
<p><label><input type="checkbox" name="hobby" value="tre">筋トレ</label></p>
<p><label><input type="checkbox" name="hobby" value="reading">読書</label></p>
<p><label><input type="checkbox" name="hobby" value="music">音楽</label></p>
<p><label><input type="checkbox" name="hobby" value="travel">旅行</label></p>
</fieldset>
<p><label>その他:<br><textarea name="comments" rows="2" cols="40"></textarea></label></p>
<p><input type="submit" value="送信"><input type="reset" value="リセット"></p>
</form>

legendタグとは?-HTML

 legendタグとは、formタグの入力フォームのグループにキャプションを付けるタグです。
 fiesdsetタグの子要素として、直下(一番最初)に記述することで、fieldsetタグで指定したフォームグループのキャプションとして機能します。