Skip to content
  • Home
  • Search
  • Tools
  • About
  • Terms of Service Agreement
  • Log In
  • Guest

Angular From Scratch Tutorial – Step 4: Adding Bootstrap

Posted on March 6, 2021July 6, 2023 By Andre Dias
angular, javascript

Angular From Scratch Tutorial – Index

NEXT: Angular From Scratch Tutorial – Step 5: Directives

PREVIOUS: Angular From Scratch Tutorial – Step 3: Binding

 

Table of Contents

  • TARGET
    • Source Code/Download
  • INSTALLING BOOTSTRAP
      • *IMPORTANT NOTE:
  • REFACTORING THE HTML USING BOOTSTRAP
    • 1. Define your design.
    • 2. Refactoring step-by-step using a draft
    • 3. Move the code from the draft to the first line of app.component.html file.
    • 4. Adjusting the code to the bootstrap structure.
      • Remove the “Pricing” on the top.
      • Set “siteBadge
      • Set title
      • Next step – moving the code to the card
      • Refactoring the cards to have just two by line
  • Final Visual After Refactoring
  • NEXT

TARGET

Refactoring code to improve visual design using Bootstrap.

Source Code/Download

For more details, the source code may be found on GitHub, “step3” tag (includes step1 up to step3).

 

INSTALLING BOOTSTRAP

There are many ways to add bootstrap to an Angular project.
In this step it will be used npm installer, one of the alternatives available at Angular: Bootstrap Install Strategies .

1. Import bootstrap.

npm install bootstrap

 

2. Import the CSS.

Edit “angular.json” and set:

"styles": [
  "src/styles.css",
  "node_modules/bootstrap/dist/css/bootstrap.css",
],


3. If desired jquery, do:

npm install jquery popper.js –save

 

Edit angular.json and set:

        "scripts": [
            "node_modules/jquery/dist/jquery.js",
            "node_modules/popper.js/dist/umd/popper.js",
            "node_modules/bootstrap/dist/js/bootstrap.js"
        ]

OBSERVATION

Personally, I do not use the “@import” annotation. Something like this:

@import “../../../node_modules/bootstrap/dist/css/bootstrap.min.css”;

The configuration when is set on “angular.json” file is a much better option.

*IMPORTANT NOTE:

Avoid using CSS resources under assets directory.
When deploying to the production using Angular CLI, the CSS files registered in angular.json are minified and bundled into a single styles.css.
The assets folder is copied to the dist folder during the build process then, the CSS code get duplicated.
Only place CSS files under assets if importing them directly in the index.html.

 

REFACTORING THE HTML USING BOOTSTRAP

1. Define your design.

The application by this moment requires two different styles.
The initial part containing the code created to this post may have a sequential listing with one or more columns.
The second part, that imported from Angular’s ngModel examples (previous post) shall be preserved as it is.

So to refactor the first part we may start choosing a bootstrap template.
Pricing seems to provide a good approach for this tutorial.

2. Refactoring step-by-step using a draft

Copy the code from Pricing and paste to a file using an editor.
Remove the head’s code.

Cut the code between the <body> elements to a new draft.
Remove the bottom stuff like Features, about, etc.

3. Move the code from the draft to the first line of app.component.html file.

The result is:

 

4. Adjusting the code to the bootstrap structure.


Remove the “Pricing” on the top.

Find and remove this line:

<a class=”p-2 text-dark” href=”#”>Pricing</a>

Set “siteBadge

Cut:
<img [src]=”siteBadge”>

and replace “Princing” in this line:
<h1 class=”display-4″>Pricing</h1>

to get this:
<h1 class=”display-4″><img [src]=”siteBadge”></h1>

Remove this line:
<p class=”lead”>Quickly build an effective pricing table for your potential customers with this Bootstrap example. It’s built with default Bootstrap components and utilities with little customization.</p>


Set title

Cut:
<h2>{{title}}</h2>

and replace “Company name”:

<h5 class=”my-0 mr-md-auto font-weight-normal”>Company name</h5>

to get this:

<h5 class=”my-0 mr-md-auto font-weight-normal”>{{title}}</h5>

 

Next step – moving the code to the card

 

Copy the code below to a draft using an editor.
Copy the code to be moved to the cards no another draft.
The image shows almost all code. Make sure to move the full three blocks.

 

Move:
<col span=”{{1 + 1}}” style=”background-color:#D2D2D2″>

as:
{{1 + 1}}” style=”background-color:#D2D2D2″

replacing:
<h4 class=”my-0 font-weight-normal”>Free</h4>

to get this:
<h4 class=”my-0 font-weight-bold”>{{1 + 1}}” style=”background-color:#D2D2D2″</h4>

Now, move the “table” as shown below:

<table>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>Angular for Now</td>
<td>$53</td>
</tr>
</table>

replacing:

              <h1 class=”card-title pricing-card-title”>$0 <small class=”text-muted”>/ mo</small></h1>
              <ul class=”list-unstyled mt-3 mb-4″>
                helo
              </ul>

to get this:

          <div class=”card-body”>
            <table>
              <tr>
                <th>ISBN</th>
                <th>Title</th>
                <th>Price</th>
              </tr>
              <tr>
                <td>3476896</td>
                <td>Angular for Now</td>
                <td>$53</td>
              </tr>
            </table>
          </div>
We get this:
We see that more space to the cards would become better.

Refactoring the cards to have just two by line

From:

  <div class=”card-deck mb-3 text-center”>
      <div class=”card mb-4 box-shadow”>

To:

  <div class=”card-deck mb-12 text-center”>
      <div class=”card mb-6 box-shadow”>

To get this:

Now we may improve the content using the table structure converting to bootstrap, but it is not necessary.
Just adding cellpadding=”10px” cellspacing=”10px” solves the issue.

So, <table> comes to:

<table cellpadding=”10px” cellspacing=”10px”>
Result:
Now, we just repeat the sames steps for all other blocks to complete the task.

Final Visual After Refactoring

 

NEXT

Angular From Scratch Tutorial – Index

NEXT: Angular From Scratch Tutorial – Step 5: Directives

PREVIOUS: Angular From Scratch Tutorial – Step 3: Binding

Andre Dias
Andre Dias

Brazilian system analyst graduated by UNESA (University Estácio de Sá – Rio de Janeiro). Geek by heart.

Post navigation

❮ Previous Post: Angular From Scratch Tutorial – Step 3: Binding
Next Post: Angular From Scratch Tutorial – Step 5: Directives ❯

Search

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Filter by Categories
angular
bootstrap
browser
computer science
container
data persistence
database
devops
editors
hardware
health
hosting
info
internet
it
java
javascript
network
node.js
play
protocol
security
self-help
selfhelp
server
services
soft
software engeneering
sql
support
Systems
techs
Uncategorized
versioning
web
web design
windows
wordpress

Recent Posts

  • Angular From Scratch Tutorial – Step 9: Modal
  • Angular From Scratch Tutorial – Step 8: Miscellany
  • Angular From Scratch Tutorial – Index
  • angular: Reading JSON files
  • NODE.JS: SEQUELIZE: MVC Project – 4TH STEP

Categories

  • angular (19)
  • bootstrap (6)
  • browser (4)
  • computer science (4)
  • container (1)
  • data persistence (2)
  • database (11)
  • devops (1)
  • editors (1)
  • hardware (4)
  • health (2)
  • hosting (1)
  • info (1)
  • internet (2)
  • it (1)
  • java (13)
  • javascript (32)
  • network (6)
  • node.js (1)
  • play (1)
  • protocol (1)
  • security (4)
  • self-help (1)
  • selfhelp (1)
  • server (2)
  • services (1)
  • soft (1)
  • software engeneering (1)
  • sql (1)
  • support (2)
  • Systems (1)
  • techs (3)
  • Uncategorized (2)
  • versioning (6)
  • web (1)
  • web design (5)
  • windows (3)
  • wordpress (4)

Copyright © 2025 .

Theme: Oceanly by ScriptsTown

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT