mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 15:07:13 +08:00
48 lines
1.2 KiB
HTML
48 lines
1.2 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/ionicons.css" rel="stylesheet">
|
|
<link href="../dist/ionic.css" rel="stylesheet">
|
|
</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>
|
|
|
|
<p><a class="button button-secondary" href="index.html">Homepage</a></p>
|
|
|
|
</main>
|
|
|
|
</section>
|
|
|
|
<script src="../dist/ionic.js"></script>
|
|
<script src="../dist/ionic-simple.js"></script>
|
|
|
|
</body>
|
|
</html>
|