Files
ionic-framework/test/alerts.html
Adam Bradley d78c453158 alerts
2013-10-22 09:43:37 -05:00

44 lines
1.0 KiB
HTML

<html>
<head>
<meta charset="utf-8">
<title>Alerts</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="../dist/css/ionic.css" rel="stylesheet">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Alerts</h1>
</header>
<main class="content has-header">
<p class="alert">
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</p>
<p class="alert alert-error">
<strong>Error!</strong> Shit hit the fan.
</p>
<p class="alert alert-success">
<strong>Booya!</strong> You win.
</p>
<p class="alert alert-info">
<strong>Info yo!</strong> This is what you need to know.
</p>
<p><a class="button button-secondary" href="index.html">Homepage</a></p>
</main>
</section>
</body>
</html>