Menu
Coddy logo textTech

HTMLの仕上げ

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

challenge icon

チャレンジ

簡単
  1. formタグの下に、テキストNew to Netflix?を持つpタグを作成します。このテキストの後、かつpタグ自体の内部に、テキストSign up nowを持つaタグを作成します(以下のようになります):

    <p>some text <a href="#">some text</a></p>
  2. pタグの下に、テキスト: を持つsmallタグを作成します。

    This page is protected by Google reCAPTCHA to ensure you're not a bot.
  3. smallタグ内の上記テキストの後に、テキストLearn moreを持つaタグを作成します

自分で試してみよう

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

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