Hello to all, welcome back to my blog. Today in this blog post, I am going to show you, Angular 11 Bootstrap 5 Ecommerce Template Free Download.
Angular11 and Bootstrap 5 came and if you are new then you must check below links:
- Angular11 Basic Tutorials
- Bootstrap 5
- For more Angular Free Templates click here
Friends now I proceed onwards and here is the working code snippet and use this carefully to avoid the mistakes:
1. Firstly friends we need fresh angular 11 setup and for this we need to run below commands but if you already have angular 11 setup then you can avoid below commands. Secondly we should also have latest node version installed on our system:
Guys you can skip this first step if you already have angular 11 fresh setup:
npm install -g @angular/cli ng new angularbootstrap //Create new Angular Project cd angularbootstrap // Go inside the Angular Project Folder ng serve --open // Run and Open the Angular Project http://localhost:4200/ // Working Angular Project Url
2. Now friends, please download zip(in this zip file there are js, css and images for angular bootstrap template) file from below path and extract zip and please put all the zip file folders in “src/assets” folder(which we will get from zip file):
Here is the updated post link:
Angular 16 Free Responsive Ecommerce Website Shop Page Template with Grid View
3. Now friends please add below code into angularbootstrap/src/index.html file:
... <head> ... <!-- Custom styles for this template --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/ui.css" rel="stylesheet"> <link href="assets/css/responsive.css" rel="stylesheet"> <link href="assets/css/all.min.css" rel="stylesheet"> <script src="assets/js/bootstrap.min.js"></script> </head>
4. Now friends we need to add below code into angularbootstrap/src/app/app.component.html file:
<header class="section-header"> <section class="header-main border-bottom"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-2 col-4"> Therichpost.com </div> <div class="col-lg-6 col-sm-12"> <form action="#" class="search"> <div class="input-group w-100"> <input type="text" class="form-control" placeholder="Search"> <div class="input-group-append"> <button class="btn btn-primary" type="submit"> <i class="fa fa-search"></i> </button> </div> </div> </form> <!-- search-wrap .end// --> </div> <!-- col.// --> <div class="col-lg-4 col-sm-6 col-12"> <div class="widgets-wrap float-md-end"> <div class="widget-header me-3"> <a href="#" class="icon icon-sm rounded-circle border"><i class="fa fa-shopping-cart"></i></a> <span class="badge badge-pill badge-danger notify">0</span> </div> <div class="widget-header icontext"> <a href="#" class="icon icon-sm rounded-circle border"><i class="fa fa-user"></i></a> <div class="text"> <span class="text-muted">Welcome!</span> <div> <a href="#">Sign in</a> | <a href="#"> Register</a> </div> </div> </div> </div> <!-- widgets-wrap.// --> </div> <!-- col.// --> </div> <!-- row.// --> </div> <!-- container.// --> </section> <!-- header-main .// --> <nav class="navbar navbar-main navbar-expand-lg navbar-light border-bottom"> <div class="container"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul class="navbar-nav"> <li class="nav-item dropdown"> <a class="nav-link" href="#">Home</a> </li> <li class="nav-item"> <a class="nav-link" href="#">About</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Supermarket</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Partnership</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Baby & Toys</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Fitness sport</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Clothing</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Furnitures</a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false"> More </a> <ul class="dropdown-menu" aria-labelledby="navbarDropdown"> <li><a class="dropdown-item" href="#">Foods and Drink</a></li> <li><a class="dropdown-item" href="#">Home interior</a></li> <li><hr class="dropdown-divider"></li> <li><a class="dropdown-item" href="#">Home interior 2</a></li> </ul> </li> </ul> </div> <!-- collapse .// --> </div> <!-- container .// --> </nav> </header> <!-- section-header.// --> <!-- ========================= SECTION MAIN ========================= --> <section class="section-main bg padding-y"> <div class="container"> <div class="row"> <aside class="col-md-3"> <nav class="card"> <ul class="menu-category"> <li><a href="#">Best clothes</a></li> <li><a href="#">Automobiles</a></li> <li><a href="#">Home interior</a></li> <li><a href="#">Electronics</a></li> <li><a href="#">Technologies</a></li> <li><a href="#">Digital goods</a></li> <li class="has-submenu"><a href="#">More items</a> <ul class="submenu"> <li><a href="#">Submenu name</a></li> <li><a href="#">Great submenu</a></li> <li><a href="#">Another menu</a></li> <li><a href="#">Some others</a></li> </ul> </li> </ul> </nav> </aside> <!-- col.// --> <div class="col-md-9"> <article class="banner-wrap"> <img src="assets/images/2.jpg" class="w-100 rounded"> </article> </div> <!-- col.// --> </div> <!-- row.// --> </div> <!-- container // --> </section> <!-- ========================= SECTION MAIN END// ========================= --> <!-- ========================= SECTION ========================= --> <section class="section-name padding-y-sm"> <div class="container"> <header class="section-heading"> <a href="#" class="btn btn-outline-primary float-end">See all</a> <h3 class="section-title">Popular products</h3> </header><!-- sect-heading --> <div class="row"> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/1.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Just another product name</a> <div class="price mt-1">$179.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/2.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Some item name here</a> <div class="price mt-1">$280.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/3.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Great product name here</a> <div class="price mt-1">$56.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/4.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Just another product name</a> <div class="price mt-1">$179.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/5.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Just another product name</a> <div class="price mt-1">$179.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/6.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Some item name here</a> <div class="price mt-1">$280.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/7.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Great product name here</a> <div class="price mt-1">$56.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> <div class="col-md-3"> <div href="#" class="card card-product-grid"> <a href="#" class="img-wrap"> <img src="assets/images/items/9.jpg"> </a> <figcaption class="info-wrap"> <a href="#" class="title">Just another product name</a> <div class="price mt-1">$179.00</div> <!-- price-wrap.// --> </figcaption> </div> </div> <!-- col.// --> </div> <!-- row.// --> </div><!-- container // --> </section> <!-- ========================= SECTION END// ========================= --> <!-- ========================= SECTION ========================= --> <section class="section-name padding-y bg"> <div class="container"> <div class="row"> <div class="col-md-6"> <h3>Download app demo text</h3> <p>Get an amazing app to make Your life easy</p> </div> <div class="col-md-6 text-md-end"> <a href="#"><img src="assets/images/misc/appstore.png" height="40"></a> <a href="#"><img src="assets/images/misc/appstore.png" height="40"></a> </div> </div> <!-- row.// --> </div><!-- container // --> </section> <!-- ========================= SECTION END// ======================= --> <!-- ========================= FOOTER ========================= --> <footer class="section-footer border-top bg"> <div class="container"> <section class="footer-top padding-y"> <div class="row"> <aside class="col-md col-6"> <h6 class="title">Brands</h6> <ul class="list-unstyled"> <li> <a href="#">Adidas</a></li> <li> <a href="#">Puma</a></li> <li> <a href="#">Reebok</a></li> <li> <a href="#">Nike</a></li> </ul> </aside> <aside class="col-md col-6"> <h6 class="title">Company</h6> <ul class="list-unstyled"> <li> <a href="#">About us</a></li> <li> <a href="#">Career</a></li> <li> <a href="#">Find a store</a></li> <li> <a href="#">Rules and terms</a></li> <li> <a href="#">Sitemap</a></li> </ul> </aside> <aside class="col-md col-6"> <h6 class="title">Help</h6> <ul class="list-unstyled"> <li> <a href="#">Contact us</a></li> <li> <a href="#">Money refund</a></li> <li> <a href="#">Order status</a></li> <li> <a href="#">Shipping info</a></li> <li> <a href="#">Open dispute</a></li> </ul> </aside> <aside class="col-md col-6"> <h6 class="title">Account</h6> <ul class="list-unstyled"> <li> <a href="#"> User Login </a></li> <li> <a href="#"> User register </a></li> <li> <a href="#"> Account Setting </a></li> <li> <a href="#"> My Orders </a></li> </ul> </aside> <aside class="col-md"> <h6 class="title">Social</h6> <ul class="list-unstyled"> <li><a href="#"> <i class="fab fa-facebook"></i> Facebook </a></li> <li><a href="#"> <i class="fab fa-twitter"></i> Twitter </a></li> <li><a href="#"> <i class="fab fa-instagram"></i> Instagram </a></li> <li><a href="#"> <i class="fab fa-youtube"></i> Youtube </a></li> </ul> </aside> </div> <!-- row.// --> </section> <!-- footer-top.// --> <section class="footer-bottom row"> <div class="col-md-2"> <p class="text-muted"> 2021 Company name </p> </div> <div class="col-md-8 text-md-center"> <span class="px-2">info@com</span> <span class="px-2">+000-000-0000</span> <span class="px-2">Street name 123, ABC</span> </div> <div class="col-md-2 text-md-end text-muted"> <i class="fab fa-lg fa-cc-visa"></i> <i class="fab fa-lg fa-cc-paypal"></i> <i class="fab fa-lg fa-cc-mastercard"></i> </div> </section> </div><!-- //container --> </footer> <!-- ========================= FOOTER END // ========================= -->
Now we are done friends also and If you have any kind of query or suggestion or any requirement then feel free to comment below. In my next post I will come with more Bootstrap 5 Free Templates.
Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding must watch video above.
I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.
Jassa
Thanks
Hi !
https://therichpost.com/ng-b5.zip on this page is broken. This link contains css and other files, can you update it?
Yes I am working on it, thanks.
Please check this:
https://therichpost.com/angular-16-free-responsive-ecommerce-website-shop-page-template-with-grid-view/