forked from NamrataDDeokar/icp-6-group-12-html-css-project-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (100 loc) · 5.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home page</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="home-screen" style="background-image: url('./images/Netflix-Background3.jpeg');">
<img src="./images/kibble logo.png" class="nav-logo">
<ul>
<li class="language-dropdown"><span><select name="" id="list">
<option value="" id="english" selected disabled> English </option>
<option value="" id="li1"> English </option>
<option value="" id="li1"> Hindi </option>
<option value="" id="li1"> Tamil </option>
</select></span></li>
<li id=""><a href="./pages/login.html" ><button class="buttons">SignIn</button></a></li>
</ul>
<div id="last-content">
<h1 id="subTitle">Unlimited movies, TV shows and more</h1>
<h2 id="subTitle-1">Watch anywhere. Cancel Anytime.</h2>
<h2 id="subTitle-1">Ready to watch? Enter your email to create or restart your membership.</h2>
<span class="register">
<input type="email" placeholder="Email Address" class="email">
<br/>
<a href="./pages/allcontent.html">
<div class="btn">Get Started</div>
</a>
</span>
</div>
</div>
<section class="section-1">
<div class="sec-1-parent-1">
<h1 class="sec-title">Enjoy on your TV</h1> <br>
<h3 class="sec-para">Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more</h3>
</div>
<img src="./images/TV_image.png" alt="" id="tv-image">
</section>
<section class="section-1">
<img src="./images/mobile2.png" alt="" id="mobile2-image">
<div class="sec-1-parent-1">
<h1 class="sec-title">Download your shows to watch offline</h1> <br>
<h3 class="sec-para">Save your favourites easily and always have something to watch.</h3>
</div>
</section>
<section class="section-1">
<div class="sec-1-parent-1">
<h1 class="sec-title">Watch everywhere</h1> <br>
<h3 class="sec-para">Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</h3>
</div>
<img src="./images/mobile1.png" alt="" id="mobile1-image">
<img src="./images/TV_image.png" alt="" id="tv-image2">
</section>
<section class="section-1">
<img src="./images/children.png" alt="" id="childern-image">
<div class="sec-1-parent-1">
<h1 class="sec-title">Create profiles for kids</h1> <br>
<h3 class="sec-para">Send children on adventures with their favourite characters in a space made just for them—free with your membership.</h3>
</div>
</section>
<section class="faq-section">
<div class="faq-title"><h1 >Frequently Asked Questions</h1></div>
<div class="faq-div">
<div class="question"><h2>What is Kibble?</h2>
<div class="answer">Kibble is a streaming service that offers a wide variety of award-winning TV shows,movies,animie,documentries and more-on thousands of internet connected devices.</div>
</div>
</div>
<div class="faq-div">
<div class="question"><h2>Where can I watch?</h2>
<div class="answer">Watch anywhere, anytime. Sign in with your Netflix account to watch instantly on the web at netflix.com from your personal computer or on any internet-connected device that offers the Netflix app, including smart TVs, smartphones, tablets, streaming media players and game consoles.</div>
</div>
</div>
<div class="faq-div">
<div class="question"><h2>How much does Kibble cost?</h2>
<div class="answer">Watch Kibble on your smartphone, tablet, Smart TV, laptop, or streaming device, all for one fixed monthly fee. Plans range from ₹ 149 to ₹ 649 a month. No extra costs, no contracts.</div>
</div>
</div>
<div class="faq-div">
<div class="question"><h2>How do I cancel?</h2>
<div class="answer">Kibble is flexible. There are no annoying contracts and no commitments. You can easily cancel your account online in two clicks. There are no cancellation fees – start or stop your account anytime.</div>
</div>
</div>
<div class="faq-div">
<div class="question"><h2>Is Kibble good for kids?</h2>
<div class="answer">Kids profiles come with PIN-protected parental controls that let you restrict the maturity rating of content kids can watch and block specific titles you don’t want kids to see.</div>
</div>
</div>
</section>
<div class="register">
<h2 class="register-paragraph">Ready to watch? Enter your email to create or restart your membership.</h2>
<form action="">
<input type="email" placeholder="Email Address">
<a href=""> <button id="get-started-button">Get Started > </button></a>
</div>
</form>
</div>
</body>
</html>