Menu
Coddy logo textTech

フォーム入力 I

Coddyの「Netflixサインインページのクローン | フロントエンドプロジェクト」コースのレッスン 3/19。

challenge icon

チャレンジ

簡単
  1. form wrapperの中に、Sign Inというテキストを持つh2タグを作成します。 
  2. h2タグの下に、formタグを作成します。
  3. formタグの中に、クラス名がform-controldivを作成します。
  4. form-controlの中に、typetextrequired属性を持つinputを作成します:

    <input type="text" required>
  5. テキスト入力の下に、Email or phone numberというテキストを持つlabelタグを作成します。

自分で試してみよう

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

Netflixサインインページのクローン | フロントエンドプロジェクトのすべてのレッスン