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

V-cards


Next, let's cover v-cards. For those of you who do not know what a v-card is, it is basically an electronic business card. You put your name and contact information on them, just like you would on a regular business card. Let's go ahead and create one. You can insert your information instead of mine, but insert this code on our side menu on or around line 127; this will go under your unordered list with Side Nav 1 and Side Nav 2:

<ul class="vcard">
  <li class="fn">Kevin Horek</li>
  <li class="street-address">My Street</li>
  <li class="locality">My City</li>
  <li><span class="state">My State</span>, <span class="zip">90210</span></li>
  <li class="email"><a href="mailto:[email protected]">[email protected]</a></li>
</ul>

For more information on v-cards and which classes you can use, visit http://en.wikipedia.org/wiki/VCard.