カテゴリー
HTML5 input time

input type=”time”とは?-HTML

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

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=”time”とは?-HTML

 input type=”time”は、時間の入力欄フォームを作成するタグです。

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

カテゴリー
HTML5 input week

input type=”week”とは?-HTML

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

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=”week”とは?-HTML

 input type=”week”は、フォームで週の入力欄を作成するタグです。

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

カテゴリー
HTML5 input month

input type=”month”とは?-HTML

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

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=”month”とは?-HTML

 input type=”month”は、月の入力欄を作成するタグです。

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

カテゴリー
date HTML5 input

input type=”date”とは?-HTML

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

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=”date”とは?-HTML

 input type=”date”は、日付を入力するフォームを作成するタグです。

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

カテゴリー
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属性は入力できる最大文字数を指定することが可能です。