-
Notifications
You must be signed in to change notification settings - Fork 95
Feature 2
Feature 2 is all about designing the user interface. We will install bootstrap 4, jquery and font-awesome library to the angular application. We also download a template from the internet and integrate it with the angular application. Along the way, we will learn how to use google fonts with the angular application, how to fix common template errors while integrating with the angular application.
You can install bootstrap 4 using the node package manager and here is the command
npm install bootstrap
You can install jQuery 3 using the node package manager and here is the command
npm install jquery
You can install font-awesome using the node package manager and here is the command
npm install @fortawesome/fontawesome-free
You can download the Bootstrap 4 Unstyled starter templates from https://startbootstrap.com You can install the shop homepage template using the node package manager and here is the command
npm install startbootstrap-shop-homepage
<div class="row">
<div class="col-md-8">
<input type="text" class="form-control" placeholder="Search books">
</div>
<div class="col-md-2">
<button type="submit" class="btn btn-primary">Search</button>
</div>
</div>
We need more database records to work with some of the advance features in angular. I have created some of the sql queries so let's download the starter files from the following link
Once you download the starter files, extract it. Copy all the image folders to assets folder in angular application and then open the updated queries script file in MySQL workbench, execute all the queries.
Copyright © 2020 B2 Tech. All rights reserved.