-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex1.html
More file actions
71 lines (71 loc) · 2.74 KB
/
index1.html
File metadata and controls
71 lines (71 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Ezeliora Godsfavour">
<meta name="description" content="Netflix-clone">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@100;200;300;400;500;600;800&family=Roboto:wght@400;500;700;900&family=Ubuntu:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style1.css">
<title>Netflix-Sign in</title>
</head>
<body>
<div class="container">
<img src="./IMAGES/logo (2).png" alt="">
<form action="">
<h2>Sign In</h2>
<input type="email" name="" id="" placeholder="Email or phone number" required>
<br>
<input type="password" name="" id="" placeholder="Password" required>
<br>
<a href="index2.html" id="submit-btn">Sign in</a>
<div class="div-1">
<p> <input type="checkbox" name="" id=""> Remember me</p>
<p id="help">Need help?</p>
</div>
<div class="div-2">
<i class="ri-facebook-box-fill"></i>
<p id="login">Login with Facebook</p>
</div>
<div class="div-3">
<p>New to Netflix? <span id="dark">Sign up now.</span></p>
</div>
<p id="dot">
This page is protected by Google reCAPTCHA to ensure you're not a bot. <span id="blue">Learn more.</span>
</p>
</form>
<footer>
<div class="footer-part">
<p id="footer-text">Questions? Call 1-844-505-2993</p>
<div class="footer-part2">
<div class="div-4">
<p>FAQ</p>
<p>Cookie Preferences</p>
<div class="footer-div">
<i class="ri-global-line" id="globe"></i>
<p id="eng">English</p>
<i class="ri-arrow-down-s-fill" id="globe"></i>
</div>
</div>
<div class="div-5">
<p>Help Center</p>
<p>Corporate Information</p>
</div>
<div class="div-6">
<p>Terms of Use</p>
</div>
<div class="div-7">
<p>Privacy</p>
</div>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>