-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsignup.html
More file actions
54 lines (52 loc) · 1.85 KB
/
signup.html
File metadata and controls
54 lines (52 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="signup.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="logo">
<img src="spo-logo.png" alt="spotify logo">
</div>
<div class="box">
<h1>Signup to start <br>listening</h1>
<label>
<strong>Email address</strong>
<br>
<input type="text" placeholder="name@domain.com" class="input-box">
</label>
<br>
<div>
<a href="" class="ph-number">Use phone number instead</a>
</div>
<div>
<button class="next">Next</button>
</div>
</div>
<div class="signup-box">
<span>Signup with Google</span>
</div>
<div class="signup-box">
<span>Signup with Facebook</span>
</div>
<div class="signup-box">
<span>Signup with Apple</span>
</div>
<footer class="footer">
<div class="spotifyContain">
<p>Already have an account? <a href="login.html">Log in here</a></p>
<p>This site is protected by reCAPTCHA and the Google <br><a href="https://policies.google.com/privacy">Privacy Policy</a> and <a href="https://policies.google.com/terms">Terms of Service</a> apply.</p>
</div>
</footer>
<footer class="footer-1">
<ul class="social-icons">
<li><a href="https://www.facebook.com/Spotify/" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/Spotify?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" target="_blank">Twitter</a></li>
<li><a href="https://www.instagram.com/spotify/" target="_blank">Instagram</a></li>
</ul>
<p>© 2024 Spotify Clone. All rights reserved.</p>
</footer>
</body>
</html>