Book Image

Learning Zurb Foundation

By : Kevin Horek
Book Image

Learning Zurb Foundation

By: Kevin Horek

Overview of this book

<p>Responsive web design is the next big thing in web design right now. It allows you to control and adapt to the user experience across a variety of devices, screens, and resolutions. Foundation is one of the most well-known responsive frameworks available, and allows you to speed up the prototyping, designing, and theming of your web project; as well as allowing you to create your own custom themes to suit your needs. It makes your life easier by giving you a grid, elements, and JavaScript functions that are responsive and easily customized to work with any web or mobile project that arises.</p> <p>This book starts off with teaching you the basics, and gradually moves on to cover the most advanced parts of this amazing framework. You will learn how to use Foundation to prototype, design, and theme your projects as well as discover how to use the framework with any programming language or content management system.</p>
Table of Contents (17 chapters)
Learning Zurb Foundation
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Pricing tables


If you are using Foundation for your startup, you might want to have pricing and lay this pricing out in a nice, easy-to-read list. Foundation comes with a nice default template. So, let's try it out. On or around line 241, let's insert the following code:

<ul class="pricing-table">
  <li class="title">Title Of Pricing</li>
  <li class="price">$19.95</li>
  <li class="description">Pricing description</li>
  <li class="bullet-item">What's Included 1</li>
  <li class="bullet-item">What's Included 1</li>
  <li class="bullet-item">What's Included 1</li>
  <li class="cta-button"><a class="button" href="#">Select</a></li>
</ul>

Pricing tables in columns

You will notice that a pricing table takes up the entire width of the screen. You might not want this, so let's add in a second one and put them both inside the Foundation grid. Let's give this code a shot:

<div class="row"...