-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (96 loc) · 3.01 KB
/
index.html
File metadata and controls
96 lines (96 loc) · 3.01 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<title>PopcornTime</title>
</head>
<body>
<!-- <div class="logo"></div> -->
<div class="main-box">
<div class="inner-box">
<div class="content">
<h1>Sign in</h1>
<div class="email">
<input
type="text"
placeholder="Email or Phone number"
class="rem"
/>
</div>
<div class="password">
<input type="password" placeholder="Password" class="rem" />
</div>
<div class="sign-in-button">
<a href="Main.html"><button>Sign In</button></a>
</div>
<div class="remeber">
<input type="checkbox" class="check-box" />
Remeber Me
</div>
<div class="new">New to PopcornTime? <a href="">Sign up</a></div>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-section">
<h2>Quick Links</h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Movies</a></li>
<li><a href="#">Showtimes</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h2>Follow Us</h2>
<ul class="social-icons">
<li>
<a href="#"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/2021_Facebook_icon.svg/2048px-2021_Facebook_icon.svg.png"
alt="Facebook"
style="height: 20px; width: 20px"
/>
Facebook</a
>
</li>
<li>
<a href="#"
><img
src="https://cdn4.iconfinder.com/data/icons/social-media-icons-the-circle-set/48/twitter_circle-512.png"
alt="Twitter"
style="height: 20px; width: 20px"
/>
Twitter</a
>
</li>
<li>
<a href="#"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Instagram_icon.png/600px-Instagram_icon.png?20200512141346"
alt="Instagram"
alt="Twitter"
style="height: 20px; width: 20px"
/>
Instagram</a
>
</li>
</ul>
</div>
<div class="footer-section">
<h2>Contact Information</h2>
<p>Email: info@PopcornTime.com</p>
<p>Phone: 02697-265011</p>
<p>Address: Charusat, Changa</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Movie Website. All rights reserved.</p>
</div>
</footer>
</body>
</html>