Skip to content

Commit

Permalink
Merge pull request #1474 from jency1/security-page
Browse files Browse the repository at this point in the history
Security page added
  • Loading branch information
arghadipmanna101 authored Aug 1, 2024
2 parents 11844d7 + 88d3f72 commit c309ed2
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 1 deletion.
6 changes: 6 additions & 0 deletions footer/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,15 @@ <h5>HELP</h5>
<div class="footerI">
<h5>CONSUMER POLICY</h5>
<ul>

<li><a href="">Cancellation & Returns</a></li>
<li><a href="">Terms Of Use</a></li>
<li><a href="../pages/securityPage/index.html">Security</a></li>

<li><a href="#">Cancellation & Returns</a></li>
<li><a href="#">Terms Of Use</a></li>
<li><a href="#">Security</a></li>

<li><a href="../pages/privacypolicy/index.html">Privacy</a></li>
<li><a href="#">Sitemap</a></li>
<li><a href="#">Grievance Redressal</a></li>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ <h4>Login</h4>
<li class="nav-item dropdown" id="navbarDropdown">
<a class="nav-link acnavdd ml-3 mr-5" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
<img src="img/svg/profile-.svg" alt="Profile"
<img src="img/svg/profile-.svg" alt="Profile" href="account/login-signup.html"
style="width: 20px; height: 20px; margin-right: 5px; margin-left: 10px;" />
<span class="navname" style="font-size: 14px;">Login <i
class="bi bi-chevron-down"></i></span>
Expand Down
53 changes: 53 additions & 0 deletions pages/securityPage/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Page - Flipkart Clone</title>

<link rel="stylesheet" href="styles.css">

</head>
<body>

<header>
<h1>Safe and Secure Shopping</h1>
</header>

<main>

<h4>Is making online payment secure on Flipkart?</h4>
<p>Yes, making the online payment is secure on Flipkart</p>

<h4>Does Flipkart store my credit/debit card infomation?</h4>
<p>No. Flipkart only stores the last 4 digits of your card number for the purpose of card identification.</p>

<h4>What credit/debit cards are accepted on Flipkart?</h4>
<p>We accept VISA, MasterCard, Maestro, Rupay, American Express, Diner's Club and Discover credit/debit cards.</p>

<h4>Do you accept payment made by credit/debit cards issued in other countries?</h4>
<p>Yes! We accept VISA, MasterCard, Maestro, American Express credit/debit cards issued by banks in India and in the
following countries: Australia, Austria, Belgium, Canada, Cyprus, Denmark, Finland, France, Germany, Ireland, Italy,
Luxembourg, the Netherlands, New Zealand, Norway, Portugal, Singapore, Spain, Sweden, the UK and the US. Please note
that we do not accept internationally issued credit/debit cards for eGV payments/top-ups.</p>

<h4>What other payment options are available on Flipkart?</h4>
<p>Apart from Credit and Debit Cards, we accept payments via Internet Banking (covering 44 banks), Cash on Delivery,
Equated Monthly Installments (EMI), E-Gift Vouchers, Flipkart Pay Later, UPI, Wallet, and Paytm Postpaid.</p>

<h4>Privacy Policy</h4>
<p>Flipkart.com respects your privacy and is committed to protecting it. For more details, please see our Privacy Policy</p>

<h4>Contact Us</h4>
<p>Couldn't find the information you need? Please Contact Us at <span>044-45614700 / 044-67415800</span></a></p>

<br>

</main>

<footer>
<p>&copy; 2024 Flipkart Clone. All rights reserved.</p>
</footer>

</body>
</html>
39 changes: 39 additions & 0 deletions pages/securityPage/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #2874f0;
color: white;
padding: 1rem 0;
text-align: center;
}

h1 {
margin: 0;
}

main {
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
background-color: white;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

span{
text-decoration: underline;
color: #2874f0;
}

footer{
text-align: center;
padding: 10px;
color: white;
background-color: #2874f0;
}

0 comments on commit c309ed2

Please sign in to comment.