Files
ionic-framework/example/alerts.html
2013-08-26 15:22:38 -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="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="../../dist/framework.css">
</head>
<body>
<section>
<header class="bar bar-header bar-dark">
<h1 class="title">Alerts</h1>
</header>
<main class="content-padded 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>
</main>
</section>
</body>
</html>