HTMLの仕上げ
Coddyの「Netflixサインインページのクローン | フロントエンドプロジェクト」コースのレッスン 7/19。
チャレンジ
簡単formタグの下に、テキストNew to Netflix?を持つpタグを作成します。このテキストの後、かつpタグ自体の内部に、テキストSign up nowを持つaタグを作成します(以下のようになります):<p>some text <a href="#">some text</a></p>pタグの下に、テキスト: を持つsmallタグを作成します。This page is protected by Google reCAPTCHA to ensure you're not a bot.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>