├── bg.jpg ├── video1.mp4 ├── favicon.ico ├── logo.svg ├── logo(1).svg ├── Netflix.css └── index.html /bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanisoni/Netflix-Clone_Project/HEAD/bg.jpg -------------------------------------------------------------------------------- /video1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanisoni/Netflix-Clone_Project/HEAD/video1.mp4 -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanisoni/Netflix-Clone_Project/HEAD/favicon.ico -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logo(1).svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Netflix.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&family=Poppins:wght@300;400;700&display=swap'); 2 | 3 | * { 4 | padding: 0; 5 | margin: 0; 6 | font-family: 'Poppins', sans-serif; 7 | } 8 | 9 | body { 10 | background-color: black; 11 | } 12 | 13 | .main { 14 | background-image: url("bg.jpg"); 15 | background-position: center center; 16 | background-size: max(1200px, 100vw); 17 | background-repeat: no-repeat; 18 | height: 644px; 19 | position: relative; 20 | } 21 | 22 | .main .box { 23 | height: 644px; 24 | width: 100%; 25 | opacity: 0.69; 26 | position: absolute; 27 | top: 0; 28 | background-color: black; 29 | } 30 | 31 | nav { 32 | max-width: 60vw; 33 | justify-content: space-between; 34 | margin: auto; 35 | display: flex; 36 | align-items: center; 37 | height: 100px; 38 | } 39 | 40 | nav img { 41 | color: red; 42 | width: 130px; 43 | position: relative; 44 | z-index: 10; 45 | } 46 | 47 | nav button { 48 | position: relative; 49 | z-index: 10; 50 | } 51 | 52 | .hero { 53 | font-family: 'Martel Sans', sans-serif; 54 | height: calc(100% - 100px); 55 | display: flex; 56 | align-items: center; 57 | justify-content: center; 58 | flex-direction: column; 59 | color: white; 60 | position: relative; 61 | gap: 23px; 62 | padding: 0 30px; 63 | } 64 | 65 | .hero> :nth-child(1) { 66 | font-family: 'Poppins', sans-serif; 67 | font-weight: bolder; 68 | font-size: 48px; 69 | text-align: center; 70 | } 71 | 72 | .hero> :nth-child(2) { 73 | font-weight: 400; 74 | font-size: 24px; 75 | text-align: center; 76 | } 77 | 78 | .hero> :nth-child(3) { 79 | font-weight: 400; 80 | font-size: 20px; 81 | text-align: center; 82 | } 83 | 84 | .separation { 85 | height: 7px; 86 | background-color: rgb(46, 44, 44); 87 | position: relative; 88 | z-index: 20; 89 | } 90 | 91 | .btn { 92 | padding: 3px 8px; 93 | font-weight: 400; 94 | color: white; 95 | background-color: rgba(248, 243, 243, 0.021); 96 | border-radius: 4px; 97 | border: 1px solid white; 98 | cursor: pointer; 99 | 100 | } 101 | 102 | .btn-red { 103 | background-color: red; 104 | color: white; 105 | padding: 3px 24px; 106 | font-size: 20px; 107 | border-radius: 4px; 108 | font-weight: 400; 109 | } 110 | 111 | .btn-red-sm { 112 | background-color: red; 113 | color: white; 114 | } 115 | 116 | .hero-buttons { 117 | display: flex; 118 | align-items: center; 119 | justify-content: center; 120 | gap: 16px; 121 | } 122 | 123 | .main input { 124 | padding: 7px 101px 8px 14px; 125 | color: white; 126 | font-size: 12px; 127 | border-radius: 4px; 128 | background-color: rgba(23, 23, 23, 0.7); 129 | border: 1px solid rgba(246, 238, 238, 0.5); 130 | } 131 | 132 | .first { 133 | display: flex; 134 | justify-content: center; 135 | max-width: 70vw; 136 | margin: auto; 137 | color: white; 138 | justify-content: center; 139 | align-items: center; 140 | } 141 | 142 | 143 | 144 | .secImg { 145 | position: relative; 146 | } 147 | 148 | .secImg img { 149 | width: 555px; 150 | position: relative; 151 | z-index: 10; 152 | } 153 | 154 | .secImg video { 155 | position: absolute; 156 | top: 51px; 157 | right: 0; 158 | width: 555px; 159 | } 160 | 161 | section.first>div { 162 | display: flex; 163 | flex-direction: column; 164 | padding: 34px 0; 165 | } 166 | 167 | section.first>div :nth-child(1) { 168 | font-size: 48px; 169 | font-weight: bolder; 170 | } 171 | 172 | 173 | section.first>div :nth-child(2) { 174 | font-size: 24px; 175 | 176 | } 177 | 178 | 179 | .faq h2 { 180 | text-align: center; 181 | font-size: 48px; 182 | } 183 | 184 | .faq { 185 | background: black; 186 | color: white; 187 | padding: 34px; 188 | } 189 | 190 | .faqbox:hover { 191 | background-color: #414141; 192 | color: white; 193 | } 194 | 195 | .faqbox svg { 196 | filter: invert(1); 197 | } 198 | 199 | .faqbox { 200 | transition: all 1s ease-out; 201 | font-size: 24px; 202 | display: flex; 203 | justify-content: space-between; 204 | background-color: #2d2d2d; 205 | padding: 24px; 206 | max-width: 60vw; 207 | margin: 34px auto; 208 | cursor: pointer; 209 | } 210 | 211 | footer { 212 | color: white; 213 | max-width: 60vw; 214 | margin: auto; 215 | padding: 60px; 216 | } 217 | 218 | footer .questions { 219 | padding: 34px 0; 220 | } 221 | 222 | 223 | .footer { 224 | display: grid; 225 | grid-template-columns: 1fr 1fr 1fr 1fr; 226 | color: white; 227 | } 228 | 229 | 230 | 231 | @media screen and (max-width: 1300px) { 232 | 233 | nav{ 234 | max-width: 90vw; 235 | } 236 | 237 | .first { 238 | flex-wrap: wrap; 239 | } 240 | 241 | .secImg img { 242 | width: 305px; 243 | } 244 | 245 | .secImg video { 246 | width: 305px; 247 | } 248 | 249 | .hero> :nth-child(1) { 250 | font-size: 32px; 251 | } 252 | 253 | .hero> :nth-child(2) { 254 | font-size: 18px; 255 | } 256 | 257 | .hero> :nth-child(3) { 258 | font-size: 18px; 259 | } 260 | 261 | .hero-buttons { 262 | display: flex; 263 | flex-direction: column; 264 | align-items: center; 265 | justify-content: center; 266 | gap: 16px; 267 | } 268 | 269 | .faq h2 { 270 | text-align: center; 271 | font-size: 32px; 272 | } 273 | 274 | footer { 275 | max-width: 90vw; 276 | padding: 75px 0; 277 | } 278 | 279 | .footer-item{ 280 | align-items: center; 281 | } 282 | 283 | 284 | } 285 | 286 | 287 | 288 | @media screen and (max-width: 1300px) { 289 | 290 | .footer { 291 | display: grid; 292 | grid-template-columns: 1fr 1fr; 293 | gap: 25px; 294 | } 295 | } 296 | 297 | 298 | .footer a { 299 | font-size: 14px; 300 | color: white; 301 | } 302 | 303 | .footer-item { 304 | display: flex; 305 | flex-direction: column; 306 | gap: 23px; 307 | } 308 | 309 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Netflix India – Watch TV Shows Online, Watch Movies Online 8 | 9 | 10 | 11 | 12 | 13 |
14 | 21 |
22 |
23 |
24 | Enjoy big movies, hit series and more from ₹ 149. 25 | Join today. Cancel anytime. 26 | Ready to watch? Enter your email to create or restart your membership. 27 |
28 | 29 | 30 |
31 | 32 |
33 | 34 |
35 | 36 | 37 |
38 | 39 |
40 |
41 | Enjoy on your TV 42 | Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more. 43 |
44 | 45 |
46 | 47 | 49 |
50 |
51 |
52 | 53 |
54 | 55 |
56 | 57 | 58 |
59 |
60 | Download your shows to watch offline 61 | Save your favourites easily and always have something to watch. 62 |
63 |
64 | 65 |
66 |
67 |
68 | Watch everywhere 69 | Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV. 70 |
71 | 72 |
73 | 74 | 76 |
77 |
78 |
79 | 80 | 81 |
82 | 83 |
84 | 86 | 87 |
88 |
89 | Create profiles for kids 90 | Send children on adventures with their favourite characters in a space made just for them—free with 91 | your membership. 92 |
93 |
94 | 95 |
96 | 97 |
98 |

Frequently Asked Questions

99 |
100 | What is NetFlix 101 | 102 | 103 | 104 | 105 | 106 |
107 |
108 | How much does Netflix cost? 109 | 110 | 111 | 112 | 113 | 114 |
115 |
116 | What can I watch on Netflix? 117 | 118 | 119 | 120 | 121 | 122 |
123 |
124 | Where can I watch? 125 | 126 | 127 | 128 | 129 | 130 |
131 |
132 |
133 |
134 | 135 | 168 |
169 | 170 |
171 | 172 | 173 | --------------------------------------------------------------------------------