updated index.html
@ -0,0 +1,187 @@
|
||||
/* scroll and position fix the legend */
|
||||
$(window).scroll(function(){
|
||||
if ($(this).scrollTop() > 320) {
|
||||
$('.legend').addClass('legendfixed');
|
||||
} else {
|
||||
$('.legend').removeClass('legendfixed');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
/* frequent words */
|
||||
$('.chosen_words').click( function(){
|
||||
var word = $(this).text();
|
||||
alert(word);
|
||||
});
|
||||
|
||||
$('.t_chosen_words').click( function(){
|
||||
var word = $(this).text();
|
||||
alert(word);
|
||||
});
|
||||
|
||||
|
||||
|
||||
/* legend & pos tag highlights */
|
||||
$(document).ready(function(){
|
||||
$('.legendverb').mouseover(function(){ $('.legendverb').css('background-color', 'yellow'); });
|
||||
$('.legendverb').mouseout(function(){ $('.legendverb').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendnoun').mouseover(function(){ $('.legendnoun').css('background-color', 'springgreen'); });
|
||||
$('.legendnoun').mouseout(function(){ $('.legendnoun').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadjective').mouseover(function(){ $('.legendadjective').css('background-color', 'blue'); });
|
||||
$('.legendadjective').mouseout(function(){ $('.legendadjective').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadverb').mouseover(function(){ $('.legendadverb').css('background-color', 'purple'); });
|
||||
$('.legendadverb').mouseout(function(){ $('.legendadverb').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendpossesivepronoun').mouseover(function(){ $('.legendpossesivepronoun').css('background-color', 'red'); });
|
||||
$('.legendpossesivepronoun').mouseout(function(){ $('.legendpossesivepronoun').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendpresentparticiple').mouseover(function(){ $('.legendpresentparticiple').css('background-color', 'brown'); });
|
||||
$('.legendpresentparticiple').mouseout(function(){ $('.legendpresentparticiple').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadjectivesuperlative').mouseover(function(){ $('.legendadjectivesuperlative').css('background-color', 'salmon'); });
|
||||
$('.legendadjectivesuperlative').mouseout(function(){ $('.legendadjectivesuperlative').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadverb-comparative-superative').mouseover(function(){ $('.legendadverb-comparative-superative').css('background-color', 'brown'); });
|
||||
$('.legendadverb-comparative-superative').mouseout(function(){ $('.legendadverb-comparative-superative').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendpropernoun').mouseover(function(){ $('.legendpropernoun').css('background-color', 'pink'); });
|
||||
$('.legendpropernoun').mouseout(function(){ $('.legendpropernoun').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendhide').mouseover(function(){ $('.legendhide').css('background-color', 'black'); });
|
||||
$('.legendhide').mouseout(function(){ $('.legendhide').css('background-color', 'transparent'); });
|
||||
|
||||
|
||||
|
||||
// click to turn on background colors
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').click(function() {
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').toggleClass('verb'); //should stay in color on.
|
||||
});
|
||||
|
||||
$('.legendadjective, .JJ').click(function() {
|
||||
$('.legendadjective, .JJ').toggleClass('adjective');
|
||||
});
|
||||
|
||||
$('.legendpossesivepronoun, .PRPS').click(function() {
|
||||
$('.legendpossesivepronoun, .PRPS').toggleClass('possesivepronoun');
|
||||
});
|
||||
|
||||
$('.legendpresentparticiple, .VBG').click(function() {
|
||||
$('.legendpresentparticiple, .VBG').toggleClass('presentparticiple');
|
||||
});
|
||||
|
||||
|
||||
$('.legendadjectivesuperlative, .JJS').click(function() {
|
||||
$('.legendadjectivesuperlative, .JJS').toggleClass('adjectivesuperlative');
|
||||
});
|
||||
|
||||
$('.legendnoun, .NN, .NNS').click(
|
||||
function() {
|
||||
$('.legendnoun, .NN, .NNS').toggleClass('noun');
|
||||
});
|
||||
|
||||
$('.legendpropernoun, .NNP, .NNPS').click(
|
||||
function() {
|
||||
$('.legendpropernoun, .NNP, .NNPS').toggleClass('propernoun');
|
||||
});
|
||||
|
||||
$('.legendadverb, .RB').click(
|
||||
function() {
|
||||
$('.legendadverb, .RB').toggleClass('adverb');
|
||||
});
|
||||
|
||||
$('.legendadverb-comparative-superative, .RBR, .JJR, .RBS').click(
|
||||
function() {
|
||||
$('.legendadverb-comparative-superative, .RBR, .JJR, .RBS').toggleClass('adverb-comparative-superative');
|
||||
});
|
||||
|
||||
$('.legendhide, .TO, .DT, .IN, .WDT, .WP, .MD, .PRP, .CC, .VBP, .WRB, .marks, .CD, .comma, .dot').click(function() {
|
||||
$('.legendhide, .TO, .DT, .IN, .WDT, .WP, .MD, .PRP, .CC, .VBP, .WRB, .marks, .CD, .comma, .dot').toggleClass('hide');
|
||||
});
|
||||
|
||||
|
||||
|
||||
/* multiple click to change css */
|
||||
$(function() {
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').each(function() {
|
||||
var count = 0;
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').click(function(){
|
||||
count++;
|
||||
if (count === 1) {
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb');
|
||||
}
|
||||
else if(count === 2){
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb');
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb-bg');
|
||||
}
|
||||
else{
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb-bg');
|
||||
count = 0;
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Image cick to make bigger */
|
||||
$('.image').click(
|
||||
function() {
|
||||
$(this).toggleClass('img_clicked');
|
||||
});
|
||||
|
||||
$('.t_image').click(
|
||||
function() {
|
||||
$(this).toggleClass('t_img_clicked');
|
||||
})
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// /* multiple click to change css */
|
||||
// $(function() {
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').each(function() {
|
||||
// var count = 0;
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').click(function(){
|
||||
// count++;
|
||||
// if (count === 1) {
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb');
|
||||
// }
|
||||
// else if(count === 2){
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb');
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb-bg');
|
||||
// }
|
||||
// else{
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb-bg');
|
||||
// count = 0;
|
||||
// }
|
||||
// });
|
||||
// });
|
||||
// });
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 75 KiB |
After Width: | Height: | Size: 6.7 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 20 KiB |
@ -1,26 +1,2 @@
|
||||
.legend {
|
||||
|
||||
font-family: Belgika;
|
||||
font-size: 10pt;
|
||||
margin-top: 50px;
|
||||
list-style: none;
|
||||
margin-left: 12vw;
|
||||
|
||||
float: left;
|
||||
|
||||
}
|
||||
|
||||
.legend li { float: left; margin-right: 10px; }
|
||||
.legend span { border: 1px solid #ccc; float: left; width: 12px; height: 12px; margin: 2px; }
|
||||
|
||||
/*.legend .legendverb { background-color: #ff00ff; }*/
|
||||
.legend .legendnoun { background-color: #00ffff; }
|
||||
.legend .legendadjective { background-color: #0000ff; }
|
||||
.legend .legendadverb { background-color: green; }
|
||||
.legend .legendhide { background-color: #000000; }
|
||||
|
||||
|
||||
/*.legendverb:hover {
|
||||
background-color: yellow;
|
||||
|
||||
}*/
|
@ -0,0 +1,137 @@
|
||||
Terms of Use
|
||||
|
||||
Welcome to Instagram!
|
||||
|
||||
These Terms of Use govern your use of Instagram and provide information about the Instagram Service, outlined below. When you create an Instagram account or use Instagram, you agree to these terms.
|
||||
|
||||
The Instagram Service is one of the Facebook Products, provided to you by Facebook Ireland Limited. These Terms of Use therefore constitute an agreement between you and Facebook Ireland Limited.
|
||||
|
||||
The Instagram Service
|
||||
|
||||
We agree to provide you with the Instagram Service. The Service includes all of the Instagram products, features, applications, services, technologies, and software that we provide to advance Instagram's mission: To bring you closer to the people and things you love. The Service is made up of the following aspects (the Service):
|
||||
|
||||
- Offering personalized opportunities to create, connect, communicate, discover, and share. People are different. We want to strengthen your relationships through shared experiences you actually care about. So we build systems that try to understand who and what you and others care about, and use that information to help you create, find, join, and share in experiences that matter to you. Part of that is highlighting content, features, offers, and accounts you might be interested in, and offering ways for you to experience Instagram, based on things you and others do on and off Instagram.
|
||||
|
||||
- Fostering a positive, inclusive, and safe environment. We develop and use tools and offer resources to our community members that help to make their experiences positive and inclusive, including when we think they might need help. We also have teams and systems that work to combat abuse and violations of our Terms and policies, as well as harmful and deceptive behavior. We use all the information we have-including your information-to try to keep our platform secure. We also may share information about misuse or harmful content with other Facebook Companies or law enforcement. Learn more in the Data Policy.
|
||||
|
||||
- Developing and using technologies that help us consistently serve our growing community.
|
||||
Organizing and analyzing information for our growing community is central to our Service. A big part of our Service is creating and using cutting-edge technologies that help us personalize, protect, and improve our Service on an incredibly large scale for a broad global community. Technologies like artificial intelligence and machine learning give us the power to apply complex processes across our Service. Automated technologies also help us ensure the functionality and integrity of our Service.
|
||||
|
||||
- Providing consistent and seamless experiences across other Facebook Company Products.
|
||||
Instagram is part of the Facebook Companies, which share technology, systems, insights, and information-including the information we have about you (learn more in the Data Policy) in order to provide services that are better, safer, and more secure. We also provide ways to interact across the Facebook Company Products that you use, and designed systems to achieve a seamless and consistent experience across the Facebook Company Products.
|
||||
|
||||
- Ensuring a stable global infrastructure for our Service.
|
||||
To provide our global Service, we must store and transfer data across our systems around the world, including outside of your country of residence. This infrastructure may be owned or operated by Facebook Inc., Facebook Ireland Limited, or their affiliates.
|
||||
|
||||
- Connecting you with brands, products, and services in ways you care about.
|
||||
We use data from Instagram and other Facebook Company Products, as well as from third-party partners, to show you ads, offers, and other sponsored content that we believe will be meaningful to you. And we try to make that content as relevant as all your other experiences on Instagram.
|
||||
|
||||
- Research and innovation.
|
||||
We use the information we have to study our Service and collaborate with others on research to make our Service better and contribute to the well-being of our community.
|
||||
|
||||
The Data Policy
|
||||
|
||||
Providing our Service requires collecting and using your information. The Data Policy explains how we collect, use, and share information across the Facebook Products. It also explains the many ways you can control your information, including in the Instagram Privacy and Security Settings.
|
||||
|
||||
|
||||
Your Commitments
|
||||
|
||||
In return for our commitment to provide the Service, we require you to make the below commitments to us.
|
||||
|
||||
Who Can Use Instagram. We want our Service to be as open and inclusive as possible, but we also want it to be safe, secure, and in accordance with the law. So, we need you to commit to a few restrictions in order to be part of the Instagram community.
|
||||
|
||||
- You must be at least 13 years old.
|
||||
|
||||
- You must not be prohibited from receiving any aspect of our Service under applicable laws or engaging in payments related Services if you are on an applicable denied party listing.
|
||||
|
||||
- We must not have previously disabled your account for violation of law or any of our policies.
|
||||
|
||||
- You must not be a convicted sex offender.
|
||||
|
||||
How You Can't Use Instagram. Providing a safe and open Service for a broad community requires that we all do our part.
|
||||
|
||||
- You can't impersonate others or provide inaccurate information.
|
||||
|
||||
- You don't have to disclose your identity on Instagram, but you must provide us with accurate and up to date information (including registration information). Also, you may not impersonate someone you aren't, and you can't create an account for someone else unless you have their express permission.
|
||||
|
||||
- You can't do anything unlawful, misleading, or fraudulent or for an illegal or unauthorized purpose.
|
||||
|
||||
- You can't violate (or help or encourage others to violate) these Terms or our policies, including in particular the Instagram Community Guidelines, Instagram Platform Policy, and Music Guidelines. Learn how to report conduct or content in our Help Center.
|
||||
|
||||
- You can't do anything to interfere with or impair the intended operation of the Service.
|
||||
|
||||
- You can't attempt to create accounts or access or collect information in unauthorized ways.
|
||||
|
||||
- This includes creating accounts or collecting information in an automated way without our express permission.
|
||||
|
||||
- You can't attempt to buy, sell, or transfer any aspect of your account (including your username) or solicit, collect, or use login credentials or badges of other users.
|
||||
You can't post private or confidential information or do anything that violates someone else's rights, including intellectual property.
|
||||
Learn more, including how to report content that you think infringes your intellectual property rights, here.
|
||||
|
||||
- You can't use a domain name or URL in your username without our prior written consent.
|
||||
|
||||
Permissions You Give to Us. As part of our agreement, you also give us permissions that we need to provide the Service.
|
||||
|
||||
- We do not claim ownership of your content, but you grant us a license to use it.
|
||||
Nothing is changing about your rights in your content. We do not claim ownership of your content that you post on or through the Service. Instead, when you share, post, or upload content that is covered by intellectual property rights (like photos or videos) on or in connection with our Service, you hereby grant to us a non-exclusive, royalty-free, transferable, sub-licensable, worldwide license to host, use, distribute, modify, run, copy, publicly perform or display, translate, and create derivative works of your content (consistent with your privacy and application settings). You can end this license anytime by deleting your content or account. However, content will continue to appear if you shared it with others and they have not deleted it. To learn more about how we use information, and how to control or delete your content, review the Data Policy and visit the Instagram Help Center.
|
||||
|
||||
- Permission to use your username, profile picture, and information about your relationships and actions with accounts, ads, and sponsored content.
|
||||
You give us permission to show your username, profile picture, and information about your actions (such as likes) or relationships (such as follows) next to or in connection with accounts, ads, offers, and other sponsored content that you follow or engage with that are displayed on Facebook Products, without any compensation to you. For example, we may show that you liked a sponsored post created by a brand that has paid us to display its ads on Instagram. As with actions on other content and follows of other accounts, actions on sponsored content and follows of sponsored accounts can be seen only by people who have permission to see that content or follow. We will also respect your ad settings. You can learn more here about your ad settings.
|
||||
|
||||
- You agree that we can download and install updates to the Service on your device.
|
||||
|
||||
Additional Rights We Retain
|
||||
|
||||
- If you select a username or similar identifier for your account, we may change it if we believe it is appropriate or necessary (for example, if it infringes someone's intellectual property or impersonates another user).
|
||||
|
||||
- If you use content covered by intellectual property rights that we have and make available in our Service (for example, images, designs, videos, or sounds we provide that you add to content you create or share), we retain all rights to our content (but not yours).
|
||||
|
||||
- You can only use our intellectual property and trademarks or similar marks as expressly permitted by our Brand Guidelines or with our prior written permission.
|
||||
|
||||
- You must obtain written permission from us or under an open source license to modify, create derivative works of, decompile, or otherwise attempt to extract source code from us.
|
||||
|
||||
Content Removal and Disabling or Terminating Your Account
|
||||
|
||||
|
||||
- We can remove any content or information you share on the Service if we believe that it violates these Terms of Use, our policies (including our Instagram Community Guidelines), or we are required to do so by law. We can refuse to provide or stop providing all or part of the Service to you (including terminating or disabling your account) immediately if you: clearly, seriously or repeatedly violate these Terms of Use, our policies (including our Instagram Community Guidelines), if you repeatedly infringe other people's intellectual property rights, or where we are required to do so by law. If we take action to remove your content for violating our Community Guidelines, or disable or terminate your account, we will notify you where appropriate. If you believe your account has been terminated in error, or you want to disable or permanently delete your account, consult our Help Center.
|
||||
|
||||
- Content you delete may persist for a limited period of time in backup copies and will still be visible where others have shared it. This paragraph, and the section below called "Our Agreement and What Happens if We Disagree," will still apply even after your account is terminated or deleted.
|
||||
|
||||
Our Agreement and What Happens if We Disagree
|
||||
|
||||
Our Agreement.
|
||||
|
||||
- Your use of music on the Service is also subject to our Music Guidelines, and your use of our API is subject to our Platform Policy. If you use certain other features or related services, you will be provided with an opportunity to agree to additional terms that will also become a part of our agreement. For example, if you use payment features, you will be asked to agree to the Community Payment Terms. If any of those terms conflict with this agreement, those other terms will govern.
|
||||
|
||||
- If any aspect of this agreement is unenforceable, the rest will remain in effect.
|
||||
|
||||
- Any amendment or waiver to our agreement must be in writing and signed by us. If we fail to enforce any aspect of this agreement, it will not be a waiver.
|
||||
|
||||
- We reserve all rights not expressly granted to you.
|
||||
|
||||
Who Has Rights Under this Agreement.
|
||||
|
||||
- This agreement does not give rights to any third parties.
|
||||
|
||||
- You cannot transfer your rights or obligations under this agreement without our consent.
|
||||
|
||||
- Our rights and obligations can be assigned to others. For example, this could occur if our ownership changes (as in a merger, acquisition, or sale of assets) or by law.
|
||||
|
||||
Who Is Responsible if Something Happens.
|
||||
|
||||
- We will use reasonable skill and care in providing our Service to you and in keeping a safe, secure, and error-free environment, but we cannot guarantee that our Service will always function without disruptions, delays, or imperfections. Provided we have acted with reasonable skill and care, we do not accept responsibility for: losses not caused by our breach of these Terms or otherwise by our acts; losses which are not reasonably foreseeable by you and us at the time of entering into these Terms; any offensive, inappropriate, obscene, unlawxful, or otherwise objectionable content posted by others that you may encounter on our Service; and events beyond our reasonable control.
|
||||
|
||||
- The above does not exclude or limit our liability for death, personal injury, or fraudulent misrepresentation caused by our negligence. It also does not exclude or limit our liability for any other things where the law does not permit us to do so.
|
||||
|
||||
How We Will Handle Disputes.
|
||||
|
||||
If you are a consumer and habitually reside in a Member State of the European Union, the laws of that Member State will apply to any claim, cause of action, or dispute you have against us that arises out of or relates to these Terms ("claim"), and you may resolve your claim in any competent court in that Member State that has jurisdiction over the claim. In all other cases, you agree that the claim must be resolved in a competent court in the Republic of Ireland and that Irish law will govern these Terms and any claim, without regard to conflict of law provisions.
|
||||
|
||||
Unsolicited Material.
|
||||
|
||||
We always appreciate feedback or other suggestions, but may use them without any restrictions or obligation to compensate you for them, and are under no obligation to keep them confidential.
|
||||
|
||||
Updating These Terms
|
||||
|
||||
We may change our Service and policies, and we may need to make changes to these Terms so that they accurately reflect our Service and policies. Unless otherwise required by law, we will notify you (for example, through our Service) at least 30 days before we make changes to these Terms and give you an opportunity to review them before they go into effect. Then, if you continue to use the Service, you will be bound by the updated Terms. If you do not want to agree to these or any updated Terms, you can delete your account, here.
|
||||
|
@ -0,0 +1,67 @@
|
||||
Netflix Terms of Use
|
||||
|
||||
Netflix provides a personalized subscription service that allows our members to access movies and TV shows ("Netflix content") streamed over the Internet to certain Internet-connected TVs, computers and other devices ("Netflix ready devices").
|
||||
|
||||
These Terms of Use govern your use of our service. As used in these Terms of Use, "Netflix service", "our service" or "the service" means the personalized service provided by Netflix for discovering and watching Netflix content, including all features and functionalities, recommendations and reviews, the website, and user interfaces, as well as all content and software associated with our service.
|
||||
|
||||
1. Membership
|
||||
|
||||
1.1. Your Netflix membership will continue until terminated. To use the Netflix service you must have Internet access and a Netflix ready device, and provide us with one or more Payment Methods. "Payment Method" means a current, valid, accepted method of payment, as may be updated from time to time, and which may include payment through your account with a third party. Unless you cancel your membership before your billing date, you authorize us to charge the membership fee for the next billing cycle to your Payment Method (see "Cancellation" below).
|
||||
|
||||
1.2. We may offer a number of membership plans, including special promotional plans or memberships offered by third parties in conjunction with the provision of their own products and services. Some membership plans may have differing conditions and limitations, which will be disclosed at your sign-up or in other communications made available to you. You can find specific details regarding your Netflix membership by visiting our website and clicking on the "Account" link available at the top of the pages of the Netflix website under your profile name.
|
||||
|
||||
2. Free Trials
|
||||
|
||||
2.1. Your Netflix membership may start with a free trial. The duration of the free trial period of your membership will be specified during sign-up and is intended to allow new members and certain former members to try the service.
|
||||
|
||||
2.2. Free trial eligibility is determined by Netflix at its sole discretion and we may limit eligibility or duration to prevent free trial abuse. We reserve the right to revoke the free trial and put your account on hold in the event that we determine that you are not eligible. Members of households with an existing or recent Netflix membership are not eligible. We may use information such as device ID, method of payment or an account email address used with an existing or recent Netflix membership to determine eligibility. For combinations with other offers, restrictions may apply.
|
||||
|
||||
2.3. We will charge the membership fee for the next billing cycle to your Payment Method at the end of the free trial period unless you cancel your membership prior to the end of the free trial period. To view the membership price and end date of your free trial period, visit our website and click the "Billing details" link on the "Account" page.
|
||||
|
||||
3.Billing and Cancellation
|
||||
|
||||
3.1. Billing Cycle. The membership fee for the Netflix service will be charged to your Payment Method on the specific billing date indicated on your "Account" page. The length of your billing cycle will depend on the type of subscription that you choose when you sign-up for the service. In some cases your payment date may change, for example if your Payment Method has not successfully settled or if your paid membership began on a day not contained in a given month. Visit our website and click on the "Billing details" link on the "Account" page to see your next payment date.
|
||||
|
||||
3.2. Payment Methods. To use the Netflix service you must provide one or more Payment Methods. You authorize us to charge any Payment Method associated to your account in case your primary Payment Method is declined or no longer available to us for payment of your subscription fee. You remain responsible for any uncollected amounts. If a payment is not successfully settled, due to expiration, insufficient funds, or otherwise, and you do not cancel your account, we may suspend your access to the service until we have successfully charged a valid Payment Method. For some Payment Methods, the issuer may charge you certain fees, such as foreign transaction fees or other fees relating to the processing of your Payment Method. Local tax charges may vary depending on the Payment Method used. Check with your Payment Method service provider for details.
|
||||
|
||||
3.3. Updating your Payment Methods. You can update your Payment Methods by going to the "Account" page. We may also update your Payment Methods using information provided by the payment service providers. Following any update, you authorize us to continue to charge the applicable Payment Method(s).
|
||||
|
||||
3.4. Cancellation. You can cancel your Netflix membership at any time, and you will continue to have access to the Netflix service through the end of your billing period. Payments are non-refundable and we do not provide refunds or credits for any partial - month membership periods or unwatched Netflix content. To cancel, go to the "Account" page and follow the instructions for cancellation. If you cancel your membership, your account will automatically close at the end of your current billing period. To see when your account will close, click "Billing details" on the "Account" page. If you signed up for Netflix using your account with a third party as a Payment Method and wish to cancel your Netflix membership, you may need to do so through such third party, for example by visiting your account with the applicable third party and turning off auto-renew, or unsubscribing from the Netflix service through that third party. You may also find billing information about your Netflix membership by visiting your account with the applicable third party.
|
||||
|
||||
3.5. Changes to the Price and Subscription Plans. We may change our subscription plans and the price of our service from time to time; however, any price changes or changes to your subscription plans will apply no earlier than 30 days following notice to you.
|
||||
|
||||
4. Netflix Service
|
||||
|
||||
4.1. You must be 18 years of age, or the age of majority in your province, territory or country, to become a member of the Netflix service. Minors may only use the service under the supervision of an adult.
|
||||
|
||||
4.2. The Netflix service and any content viewed through the service are for your personal and non-commercial use only and may not be shared with individuals beyond your household. During your Netflix membership we grant you a limited, non-exclusive, non-transferable right to access the Netflix service and view Netflix content. Except for the foregoing, no right, title or interest shall be transferred to you. You agree not to use the service for public performances.
|
||||
|
||||
4.3. You may view the Netflix content primarily within the country in which you have established your account and only in geographic locations where we offer our service and have licensed such content. The content that may be available to watch will vary by geographic location and will change from time to time. The number of devices on which you may simultaneously watch depends on your chosen subscription plan and is specified on the "Account" page.
|
||||
|
||||
4.4. The Netflix service, including the content library, is regularly updated. In addition, we continually test various aspects of our service, including our website, user interfaces, promotional features and availability of Netflix content. You can turn off tests participation at any time by visiting the "Account" page and changing the "Test participation" settings.
|
||||
|
||||
4.5. Some Netflix content is available for temporary download and offline viewing on certain supported devices ("Offline Titles"). Limitations apply, including restrictions on the number of Offline Titles per account, the maximum number of devices that can contain Offline Titles, the time period within which you will need to begin viewing Offline Titles and how long the Offline Titles will remain accessible. Some Offline Titles may not be playable in certain countries and if you go online in a country where you would not be able to stream that Offline Title, the Offline Title will not be playable while you are in that country.
|
||||
|
||||
4.6. You agree not to archive, reproduce, distribute, modify, display, perform, publish, license, create derivative works from, offer for sale, or use (except as explicitly authorized in these Terms of Use) content and information contained on or obtained from or through the Netflix service. You also agree not to: circumvent, remove, alter, deactivate, degrade or thwart any of the content protections in the Netflix service; use any robot, spider, scraper or other automated means to access the Netflix service; decompile, reverse engineer or disassemble any software or other products or processes accessible through the Netflix service; insert any code or product or manipulate the content of the Netflix service in any way; or use any data mining, data gathering or extraction method. In addition, you agree not to upload, post, e-mail or otherwise send or transmit any material designed to interrupt, destroy or limit the functionality of any computer software or hardware or telecommunications equipment associated with the Netflix service, including any software viruses or any other computer code, files or programs. We may terminate or restrict your use of our service if you violate these Terms of Use or are engaged in illegal or fraudulent use of the service.
|
||||
|
||||
4.7. The quality of the display of the Netflix content may vary from device to device, and may be affected by a variety of factors, such as your location, the bandwidth available through and/or speed of your Internet connection. HD, Ultra HD and HDR availability is subject to your Internet service and device capabilities. Not all content is available in all formats, such as HD, Ultra HD and HDR, and not all subscription plans allow you to receive content in all formats. Default playback settings on cellular networks exclude HD, Ultra HD and HDR content. The minimum connection speed for SD quality is 0.5 Mbps; however, we recommend a faster connection for improved video quality. A download speed of at least 5.0 Mbps per stream is recommended to receive HD content (defined as a resolution of 720p or higher). A download speed of at least 25.0 Mbps per stream is recommended to receive Ultra HD (defined as a resolution of 1080p or higher) and HDR content. You are responsible for all Internet access charges. Please check with your Internet provider for information on possible Internet data usage charges. The time it takes to begin watching Netflix content will vary based on a number of factors, including your location, available bandwidth at the time, the content you have selected and the configuration of your Netflix ready device.
|
||||
|
||||
4.8. Netflix software is developed by, or for, Netflix and is designed to enable viewing of Netflix content through Netflix ready devices. This software may vary by device and medium, and functionalities and features may also differ between devices. You acknowledge that the use of the service may require third party software that is subject to third party licenses. You agree that you may automatically receive updated versions of the Netflix and related third-party software.
|
||||
|
||||
5. Passwords and Account Access.
|
||||
|
||||
The member who created the Netflix account and whose Payment Method is charged (the "Account Owner") has access and control over the Netflix account and the Netflix ready devices that are used to access our service and is responsible for any activity that occurs through the Netflix account. To maintain control over the account and to prevent anyone from accessing the account (which would include information on viewing history for the account), the Account Owner should maintain control over the Netflix ready devices that are used to access the service and not reveal the password or details of the Payment Method associated with the account to anyone. You are responsible for updating and maintaining the accuracy of the information you provide to us relating to your account. We can terminate your account or place your account on hold in order to protect you, Netflix or our partners from identity theft or other fraudulent activity.
|
||||
|
||||
6. Miscellaneous
|
||||
|
||||
6.1. Governing Law. These Terms of Use shall be governed by and construed in accordance with the laws of the Netherlands. These terms will not limit any consumer protection rights that you may be entitled to under the mandatory laws of your country of residence.
|
||||
|
||||
6.2. Unsolicited Materials. Netflix does not accept unsolicited materials or ideas for Netflix content, and is not responsible for the similarity of any of its content or programming in any media to materials or ideas transmitted to Netflix.
|
||||
|
||||
6.3. Customer Support. To find more information about our service and its features or if you need assistance with your account, please visit the Netflix Help Center on our website. In certain instances, Customer Service may best be able to assist you by using a remote access support tool through which we have full access to your computer. If you do not want us to have this access, you should not consent to support through the remote access tool, and we will assist you through other means.
|
||||
|
||||
6.4. Survival. If any provision or provisions of these Terms of Use shall be held to be invalid, illegal, or unenforceable, the validity, legality and enforceability of the remaining provisions shall remain in full force and effect.
|
||||
|
||||
6.5. Changes to Terms of Use. Netflix may, from time to time, change these Terms of Use. We will notify you at least 30 days before such changes apply to you.
|
||||
|
||||
6.6. Electronic Communications. We will send you information relating to your account (e.g. payment authorizations, invoices, changes in password or Payment Method, confirmation messages, notices) in electronic form only, for example via emails to your email address provided during registration.
|