Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Products.html added #9

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<a href="#home" class="link active">home</a>
<a href="#services" class="link">services</a>
<a href="#about" class="link">about</a>
<a href="#products" class="link">products</a>
<a href="products.html" target="_blank" class="link">products</a>
<a href="#reviews" class="link">reviews</a>
<a href="#contact" class="link">contact</a>
</div>
Expand Down
30 changes: 30 additions & 0 deletions products.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products</title>
<!-- custom style sheets -->
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/mediaQueries.css">
<link rel="stylesheet" href="styles/swiper-bundle.min.css">

<!-- link to add favicon -->
<link rel="icon" href="./images/logo.png" type="image/png">

<!-- font awesome icons script -->
<script src="https://kit.fontawesome.com/c732ec9339.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Products -->
<section class="products" id="products">
<h1>Our <span>Products</span></h1>
<div class="categories-wrapper">
<!-- <button class="active" id="all">All</button> -->
</div>
<div class="box-container products-box">
</div>
</section>
<script type="module" src="script/products.js"></script>
</body>
</html>