mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
44 lines
1.0 KiB
HTML
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="/vendor/font-awesome/css/font-awesome.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="../dist/ionic.css">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<section>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Alerts</h1>
|
|
</header>
|
|
|
|
<main class="content 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>
|