29 lines
1012 B
PHP
29 lines
1012 B
PHP
<? $title = "Page Title";
|
|
include("includes/doc-head.php"); ?>
|
|
|
|
<div class="container">
|
|
<nav class="five columns">
|
|
<h1>Skeleton</h1>
|
|
<ul>
|
|
<li><a href="#whatAndWhy">What & Why</a></li>
|
|
<li><a href="#basics">Basics</a></li>
|
|
<li><a href="#typography">Typography</a></li>
|
|
<li><a href="#grid">Grid</a></li>
|
|
<li><a href="#buttons">Buttons</a></li>
|
|
<li><a href="#tabs">Tabs</a></li>
|
|
<li><a href="#forms">Forms</a></li>
|
|
<li><a href="#mediaQueries">Media Queries</a></li>
|
|
<li><a href="#theFuture">The Future</a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="eleven columns">
|
|
<header>
|
|
<p>Skeleton is a lightweight framework for HTML, CSS & jQuery that makes building websites easier.</p>
|
|
</header>
|
|
<br class="large" />
|
|
<h3>What & Why</h3>
|
|
<p>Here is where I need to chat about what Skeleton is, why itÕs awesome and how what the file structure is. Focus on: 1) Speed, 2) Best Practices , 3) Across devices</p>
|
|
</div>
|
|
</div><!-- container -->
|
|
|
|
<? include("includes/doc-foot.php"); ?>
|