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

Typography


Here are the basic styling of the heading elements:

<h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4</h4>
<h5>H5</h5>
<h6>H6</h6>

Let's put them in our code to see what they look like. Under Sort By: and code below this image tag, let's add the six header tags. This should be around line 82 in our index.html file. Remember, you can always view my code at https://codio.com/kevinhorek/Learning-Zurb-Foundation/ or https://github.com/kevinhorek/Learning-Zurb-Foundation. Refresh your browser, and you will see the six headers.

Subheadings

Perfect! Now that we have the headers in, we can remove them second to sixth headers and just keep <h1>. Let's change the text in <h1> to <h1>Welcome</h1>. Refresh your browser. You also have the ability to use a subheader class on any of the header tags, so let's create another <h1> tag right below the first one, with the content To Learning Zurb Foundation...