type test page

This commit is contained in:
Adam Bradley
2013-09-18 14:03:12 -05:00
parent ffdaff4bce
commit 80cd88987b
2 changed files with 36 additions and 9 deletions

View File

@ -35,15 +35,7 @@
<p><a class="button button-block button-default" href="popovers.html">Popovers</a></p> <p><a class="button button-block button-default" href="popovers.html">Popovers</a></p>
<p><a class="button button-block button-default" href="pull-to-refresh.html">Pull To Refresh</a></p> <p><a class="button button-block button-default" href="pull-to-refresh.html">Pull To Refresh</a></p>
<p><a class="button button-block button-default" href="tab-bars.html">Tab Bars</a></p> <p><a class="button button-block button-default" href="tab-bars.html">Tab Bars</a></p>
<hr> <p><a class="button button-block button-default" href="type.html">Type</a></p>
<h1>I'm an H1 Element</h1>
<h2>I'm an H2 Element</h2>
<h3>I'm an H3 Element</h3>
<h4>I'm an H4 Element</h4>
<h5>I'm an H5 Element</h5>
<h6>I'm an H6 Element</h6>
<p>I'm a paragraph Element!</p>
<p>As am I'm a paragraph Element too.</p>
</main> </main>
</section> </section>

35
test/type.html Normal file
View File

@ -0,0 +1,35 @@
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="../vendor/font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="../dist/ionic.css" rel="stylesheet">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Type</h1>
</header>
<main class="content content-padded has-header">
<h1>I'm an H1 Element</h1>
<h2>I'm an H2 Element</h2>
<h3>I'm an H3 Element</h3>
<h4>I'm an H4 Element</h4>
<h5>I'm an H5 Element</h5>
<h6>I'm an H6 Element</h6>
<p>I'm a paragraph Element!</p>
<p>As am I'm a paragraph Element too.</p>
<hr>
<p><a class="button button-secondary" href="index.html">Homepage</a></p>
</main>
</section>
</body>
</html>