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/blog.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
148 lines (135 sloc)
4.94 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>Vision Pro Accessories Store</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 class="active" href="blog.html">Blog</a></li> | |
<li><a 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="blog-header"> | |
<h2>#ExploreVisionPro</h2> | |
<p>Explore the latest in VR technology and how our accessories enhance your experience!</p> | |
</section> | |
<section id="blog"> | |
<div class="blog-box"> | |
<div class="blog-img"> | |
<img src="img/blog/vp1.jpg" alt="Vision Pro VR Headset"> | |
</div> | |
<div class="blog-details"> | |
<h4>Exploring Vision Pro VR Headset</h4> | |
<p>Discover the cutting-edge features of the Vision Pro VR Headset and how it's changing the VR landscape...</p> | |
<a href="#">CONTINUE READING</a> | |
</div> | |
<h1>15/04</h1> | |
</div> | |
<div class="blog-box"> | |
<div class="blog-img"> | |
<img src="img/blog/vp2.jpg" alt="Vision Pro Accessories"> | |
</div> | |
<div class="blog-details"> | |
<h4>Top Accessories for Vision Pro</h4> | |
<p>From enhanced controllers to immersive audio solutions, learn about the must-have accessories for your Vision Pro...</p> | |
<a href="#">CONTINUE READING</a> | |
</div> | |
<h1>20/04</h1> | |
</div> | |
<div class="blog-box"> | |
<div class="blog-img"> | |
<img src="img/blog/vp3.jpg" alt="Setup Tips"> | |
</div> | |
<div class="blog-details"> | |
<h4>Setup Tips for Your Vision Pro</h4> | |
<p>Get the best setup tips to maximize your Vision Pro experience for both gaming and professional use...</p> | |
<a href="#">CONTINUE READING</a> | |
</div> | |
<h1>25/04</h1> | |
</div> | |
</section> | |
<section id="paginition" class="section-p1"> | |
<a href="#">1</a> | |
<a href="#">2</a> | |
<a href="#"><i class="fa-solid fa-arrow-right"></i></a> | |
</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 the="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> |