-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
54 lines (53 loc) · 1.67 KB
/
sign-up.html
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
<!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">
<link rel="stylesheet" href="styles.css">
<title>Netflix Frontend Clone - Sign Up</title>
</head>
<body>
<header>
<div class="nav">
<a href="index.html"><img class="logo" src="/images/netflix.png" alt="Netflix Logo"></a>
</div>
<div class="sign-form">
<h1>Sign Up</h1>
<div class="user-firstname">
<input type="text" name="sign up" class="sign-in-form" placeholder="First Name">
</div>
<div class="user-email">
<input type="email" name="sign up" class="sign-in-form" placeholder="Email Address">
</div>
<div class="user-password">
<input type="password" name="sign up" class="sign-in-form" placeholder="Password">
</div>
<a href="explore.html"><div class="sign-btn">Sign Up</div></a>
<p>Already a user? <a href="sign-in.html">Sign in</a> now.</p>
</div>
</header>
<footer>
<p>Questions? Call 000-800-040-1843</p>
<div class="links">
<ul>
<li>FAQ</li>
<li>Help Centre</li>
<li>Account</li>
<li>Media Centre</li>
<li>Investor Relations</li>
<li>Jobs</li>
<li>Ways to Watch</li>
<li>Terms of Use</li>
<li>Privacy</li>
<li>Cookie Preferences</li>
<li>Corporate Information</li>
<li>Contact Us</li>
<li>Speed Test</li>
<li>Legal Notices</li>
<li>Only on Netflix</li>
</ul>
</div>
</footer>
</body>
</html>