Skip to content
Open
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
Binary file added git images/furniture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added git images/laptops.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added git images/pexels-neosiam-603022.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added git images/piza.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added git images/shoes.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added git images/smartphones.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
94 changes: 94 additions & 0 deletions productlist.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="bootstrap-5.2.2-dist/css/bootstrap-reboot.min.css">
<title>Document</title>
</head>
<body>
<div class="container text-center">
<div class="row">
<div class="col md-6">
<div class="form-group col-md-4">
<label for="inputState">Select Place</label>
<select id="inputState" class="form-control">
<option selected>Shoes</option>
<option selected>Piza</option>
<option selected>Furniture</option>
<option selected>Laptop</option>
<option selected>Jeans</option>
</select>
</div>
</div>
<div class="col md-6" style="margin-top :20px;">
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</div>
<div class="container" style="margin-top: 40px;">
<div class="row">

<div class="col-md-6">
<div class="card" >
<img src="git images/shoes.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><span>shoes</span></h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="" class="btn btn-primary">Visit site</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<img src="git images/piza.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><span>piza</span></h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="" class="btn btn-primary">Visit site</a>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-4">
<div class="card" >
<img src="git images/furniture.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><span>Furniture</span> </h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="" class="btn btn-primary">Visit site</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img src="git images/smartphones.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><span>Smart Phones</span></h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="" class="btn btn-primary">Visit site</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img src="git images/pexels-neosiam-603022.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title"><span>Jeans</span> </h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="" class="btn btn-primary">Visit site</a>
</div>
</div>
</div>
</div>
</div>

</body>
</html>