Menu
Coddy logo textTech

Form Input I

Coddy'nin Netflix Giriş Sayfası Klonu | Front-end projesi kursunda ders 3 / 19.

challenge icon

Görev

Kolay
  1. Form sarmalayıcısının (wrapper) içinde, Sign In metnine sahip bir h2 etiketi oluşturun. 
  2. h2 etiketinin altına bir form etiketi oluşturun.
  3. form etiketinin içinde form-control sınıf adına sahip bir div oluşturun.
  4. form-control içinde, type özelliği text olan ve required özniteliğine sahip bir input oluşturun:

    <input type="text" required>
  5. Metin girişinin (input) altına, şu metni içeren bir label etiketi oluşturun: Email or phone number

Kendin dene

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

Netflix Giriş Sayfası Klonu | Front-end projesi bölümündeki tüm dersler