-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetf.html
148 lines (145 loc) · 4 KB
/
netf.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Netflix</title>
<link rel="stylesheet" href="netstyle.css">
<style>
.qna{
max-width: 500px;
margin: 0 auto;
width: 50%;
}
button{
border: none;
outline: none;
cursor: pointer;
}
.accordion{
width: 100%;
background-color: #303030;
color: #fff;
font-size: 20px;
padding: 18px 20px;
margin-bottom: 1px;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
}
.accordion::after{
content: '\02795';
font-size: 20px;
color: #fff;
}
.panel{
background-color: #303030;
color: #fff;
margin-bottom: 4px;
overflow: hidden;
}
.panel > p {
font-size: 20px;
padding: 10px 20px;
}
.panel-closed{
max-height: 0;
overflow: hidden;
}
.panel-open{
max-height: 700px;
}
.accordion-active::after {
content: "\274C";
}
.panel{
transition: max-height .33s cubic-bezier(.5,0,.1,1);
}
</style>
</head>
<body>
<div class="navbar">
<li class="logo"><img src="images/logo.png "></li>
<li class="buttons">Sign In</li>
</div>
<div class="main">
<div class="area">
<h1>Unlimited movies, TV shows, and more.</h1>
<h3>Watch anywhere. Cancel anytime.
<p>Ready to watch? Enter your email to create or access your account</p></h3>
<div class="search">
<input type="email" class="box"placeholder="Email address">
<span class="try">
Get Started >
</span>
</div>
</div>
</div>
<div class="container1">
<div class="text">
<h1>Enjoy on your TV. </h1>
<p> Watchx on Smart TVs, Playstation, Xbox, <br>
Chromecast, Apple TV, Blu-ray players, and<br>
more.</p>
</div>
<div class="image">
<img src="i.png">
</div>
</div>
<div class="container1">
<div class="text">
<h1>Download your shows to watch on the go.</h1>
<p>Save your data and watch all your favorites offline.</p>
</div>
<div class="image">
<img src="ii.png">
</div>
</div>
<div class="container1">
<div class="text">
<h1>Watch everywhere.</h1>
<p> Stream unlimited movies and TV shows on <br>your phone, tablet, laptop, and TV without paying more.</p>
</div>
<div class="image">
<img src="im.png">
</div>
</div>
<div class="question">
<h1>Frequently Asked Questions
</h1>
<div class="qna">
<button class="accordion">What is Netflix?</button>
<div class="panel panel-closed">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate, nemo. </p>
</div>
<button class="accordion">How much does Netflix cost?</button>
<div class="panel panel-closed">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate, nemo. </p>
</div>
<button class="accordion">Where can I watch?</button>
<div class="panel panel-closed">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate, nemo. </p>
</div>
<button class="accordion">What can I watch on Netflix?</button>
<div class="panel panel-closed">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate, nemo.</p>
</div>
</div>
<div class="search1">
<input type="email" class="box1" placeholder="Email" >
<span class="try1">
Get Started
</span>
</div>
<h4>Ready to watch? Enter your email to create or access your account
</h4>
</div>
<footer>
<p>© 1997-2018 Netflix, Inc.</p>
<p>Carlos Avila © 2018</p>
</footer>
</div>
</body>
</html>