- ZURB provides a Foundation framework for Mobile First Designing.
- Some Beneficial Features :-
— Semantic Code.
— More Mixin For Use.
— More Place Holder Classes.
- The Foundation can be downloaded from the following URL:-
- In this Demo, “We will only get started with foundation framework and in subsequent posts will explore different components“.
- The project structure :-
- The HTML markup for a simple Index page is as below:-
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Getting Started With Foundation</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/foundation.min.css" />
<script src="js/modernizr.js"></script>
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h1>My Small Tutorial : Foundation Framework</h1>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>
- The output of the code is as below:-