1
3

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.

プログラミング初心者の備忘録ーお問い合わせフォーム編

Posted at

はじめに

未来電子テクノロジーでインターンをしているMaomao Maoです。

プログラミング初心者であるため、内容に誤りがあるかもしれません。
もし、誤りがあれば修正するのでどんどん指摘してください。

今回は、お問い合わせフォームを作ってみようと思います。

##お問い合わせフォームを作る

メールアドレスの入力欄を作る

メールアドレス入力欄は1行入力欄を作ります。 その際、__input__を使用します。

お問い合わせ内容入力欄を作る

お問い合わせ内容入力欄には、複数行入力できるようにします。 その際、__textarea__を使用します。
<form>

<p>メールアドレス</p>
<input>

<p>お問い合わせ内容</p>
<textarea></textarea>

</form>

送信ボタンを作る

送信ボタンにも、__input__を使います。
<input type="submit">

ボタンのテキストを変えたい場合は、__value__を使います。

<input type="submit" value="保存">
1
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?