Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Project-3/about.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
145 lines (130 sloc)
4.86 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<script src="https://kit.fontawesome.com/bcb2c05d90.js" crossorigin="anonymous"></script> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>About Vision Pro Accessories</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" /> | |
<link rel="stylesheet" href="css/style.css" /> | |
</head> | |
<body> | |
<header> | |
<a href="index.html" class="logo"><img src="img/logo.svg" alt="Vision Pro Logo" class="logo" /></a> | |
<nav> | |
<ul id="navbar"> | |
<li><a href="index.html">Home</a></li> | |
<li><a href="shop.html">Shop</a></li> | |
<li><a href="blog.html">Blog</a></li> | |
<li><a class="active" href="about.html">About</a></li> | |
<li><a href="contact.html">Contact</a></li> | |
<li id="lg-bag"> | |
<a href="cart.html"><i class="fa fa-bag-shopping"></i></a> | |
</li> | |
<a href="#" id="close"><i class="fa-solid fa-xmark"></i></a> | |
</ul> | |
</nav> | |
<div id="mobile"> | |
<a href="cart.html"><i class="fa fa-bag-shopping"></i></a> | |
<i id="bar" class="fas fa-outdent"></i> | |
</div> | |
</header> | |
<section id="page-header" class="about-header"> | |
<h2>#ExploreVisionPro</h2> | |
<p> Discover the world of Vision Pro accessories </p> | |
</section> | |
<section id="about-head" class="section-p1"> | |
<img src="img/about/a6.jpg" alt="About Vision Pro"> | |
<div> | |
<h2>What is Vision Pro?</h2> | |
<p>Vision Pro is dedicated to enhancing your virtual reality experience with our top-of-the-line accessories designed to optimize and personalize your VR sessions.</p> | |
<p>Whether you are gaming, experiencing virtual tourism, or engaging in professional VR applications, our accessories provide comfort, durability, and performance enhancement.</p> | |
<marquee bgcolor="#ccc" loop="-1" scrollamount="5" width="100%">Explore our wide range of products tailored for your Vision Pro device.</marquee> | |
</div> | |
</section> | |
<section id="feature" class="section-p1"> | |
<div class="fe-box"> | |
<img src="img/features/f1.png" alt=""> | |
<h6>Custom Fit</h6> | |
</div> | |
<div class="fe-box"> | |
<img src="img/features/f2.png" alt=""> | |
<h6>Enhanced Performance</h6> | |
</div> | |
<div class="fe-box"> | |
<img src="img/features/f3.png" alt=""> | |
<h6>Cost Effective</h6> | |
</div> | |
<div class="fe-box"> | |
<img src="img/features/f4.png" alt=""> | |
<h6>Exclusive Offers</h6> | |
</div> | |
<div class="fe-box"> | |
<img src="img/features/f5.png" alt=""> | |
<h6>Satisfaction Guaranteed</h6> | |
</div> | |
<div class="fe-box"> | |
<img src="img/features/f6.png" alt=""> | |
<h6>24/7 Customer Support</h6> | |
</div> | |
</section> | |
<section id="newsletter" class="section-p1 section-m1"> | |
<div class="newstext"> | |
<h4>Sign Up For Newsletters</h4> | |
<p>Get E-mail updates about our latest Vision Pro products and special offers.</p> | |
</div> | |
<div class="form"> | |
<input type="text" placeholder="Your email address"> | |
<button class="normal" id="signUpButton">Sign Up</button> | |
</div> | |
</section> | |
<footer class="section-p1"> | |
<div class="col"> | |
<img src="img/logo.svg" alt="Vision Pro Logo" class="logo" /> | |
<h4>Contact</h4> | |
<p><strong>Address:</strong> West Lafayette, IN 47907, USA</p> | |
<p><strong>Phone:</strong> +1 765-494-4600</p> | |
<p><strong>Hours:</strong> 8:00 am - 5:00 pm, Mon - Fri</p> | |
<div class="icon follow"> | |
<h4>Follow Us</h4> | |
<i class="fab fa-facebook-f"></i> | |
<i class="fab fa-twitter"></i> | |
<i class="fab fa-instagram"></i> | |
<i class="fab fa-pinterest-p"></i> | |
<i class="fab fa-youtube"></i> | |
</div> | |
</div> | |
<div class="col"> | |
<h4>About</h4> | |
<a href="#">Our Story</a> | |
<a href="#">Product Quality</a> | |
<a href="#">Sustainability</a> | |
<a href="#">Privacy Policy</a> | |
<a href="#">Contact Us</a> | |
</div> | |
<div class="col"> | |
<h4>My Account</h4> | |
<a href="#">Log In</a> | |
<a href="#">View Cart</a> | |
<a href="#">My Wishlist</a> | |
<a href="#">Track My Order</a> | |
<a href="#">Support Center</a> | |
</div> | |
<div class="col install"> | |
<h4>Install App</h4> | |
<p>From App Store or Google Play</p> | |
<div class="row"> | |
<img src="img/pay/app.jpg" alt="" /> | |
<img src="img/pay/play.jpg" alt="" /> | |
</div> | |
<p>Secured Payment Gateways</p> | |
<img src="img/pay/pay.png" alt="" /> | |
</div> | |
<div class="copyright"> | |
<p>© 2024, Vision World Accessories - A Vision for the Future</p> | |
</div> | |
</footer> | |
<script src="script.js"></script> | |
</body> | |
</html> |