Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Bootstrap 4

You're reading from   Mastering Bootstrap 4 Learn how to build beautiful and highly customizable web interfaces by leveraging the power of Bootstrap 4

Arrow left icon
Product type Paperback
Published in Sep 2016
Publisher Packt
ISBN-13 9781783981120
Length 286 pages
Edition 1st Edition
Languages
Arrow right icon
Toc

Table of Contents (10) Chapters Close

Creating a footer


At the moment, MyPhoto only contains a placeholder in place of a useful footer. Before MyPhoto goes live, it will desperately need a footer that should contain at least three pieces of information:

  • A copyright notice

  • A link to your website's terms and conditions

  • A link to your website's About section

Let's go ahead and modify our footer to include these three pieces of information:

    <footer class="footer">
        <p class="text-muted">&copy; MyPhoto Inc.</p>
        <p class="text-muted">Terms &amp;Conditions</p>
        <p class="text-muted">About Us</p>
    </footer> 

Now open styles/myphoto.css and insert the following CSS:

    footer p {
        display: inline;
    }

So, what exactly did we just do? We inserted our copyright notice, and some placeholder text for our Terms and Conditions and About Us link. We embedded each of these three texts inside a paragraph element and applied...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime