##やったこと
・実際にformタグを使い簡単な問い合わせ画面を作る。
・railsチュートリアル2章の知識を用いて、task管理アプリを作る。
##学んだこと
type属性
input type="text"
属性の値を"text"と表示すると1行のテキストを入力できるフィールドができる。
name属性
input type="text" name="mail"
フィールドを特定する名前を半角英数で指定する。(わかりやすい名前で)
textareaタグ
nameタグは上記と一緒
textarea name="comment"
cols属性
テキストフィールドの横幅を指定。
属性を指定しない場合は約20文字である。
textarea name="comment" cols="30"
rows属性
rows属性を"5"に指定すると5行分程度の高さでフィールドが表示されます。5行しか入力できないという数字ではなく、あくまでも表示される高さの目安として設定する。
textarea name="comment" cols="30" rows="5"
送信ボタンの作成
最初のinputタグを使いtype属性にsubmitを指定する。
input type="submit"
value属性
ボタンに表示する文字を指定する。
input type="submit" value="確認する"
##難しくてハマったところ
・githubにpushする際に下記のようなエラーがでた。
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.```