1
2

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-06-18

こんにちは。職業です。

#⃣今回はアンケートです!
フォーム1 アンケート.png
ポイントとなるタブ
[form]
[text]
[submit]
[textarea]
それぞれについて説明していきます。

まずは**[form]**フォームからです。
フォームとは、情報を入力、選択することです。
組み合わせが効く使い勝手が良いものになります。

action→データの飛ばし先を指定
method=[post]or[get]今回は何も書かないので[post]
value→ボタンに表示されるテキスト部分

テキストフィールド
inputタグを使い、typeで[text]を指定します。
今回はnameを使用します。

送信ボタン
送信ボタン→typeで[sumit]を指定します。
ボタンのテキストは[value]で指定します。

テキストエリア
テキストフィールドは複数行書くことができるフォームを作成することが出来ます。

フォーム1 あんけーと0.png

参考になって頂けたら幸いです!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?