forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuttons-link-icon.html
More file actions
42 lines (39 loc) · 1.3 KB
/
buttons-link-icon.html
File metadata and controls
42 lines (39 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html ng-app="ionic">
<head>
<script src="../../dist/js/ionic.bundle.js"></script>
<meta charset="utf-8">
<title>Buttons</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link href="../../dist/css/ionic.css" rel="stylesheet">
<style>
body {
position: absolute;;
}
</style>
</head>
<body>
<header class="bar bar-header bar-dark">
<h1 class="title">Buttons: <link> block w/ icons</h1>
</header>
<div class="content has-header padding">
<button class="button">
<i class="icon ion-loading-c"></i> Loading...
</button>
<br />
<button class="button icon-left ion-home">Home</button>
<br />
<button class="button icon-left ion-star button-positive">Favorites</button>
<br />
<a class="button icon-right ion-chevron-right button-calm">Learn More</a>
<br />
<a class="button icon-left ion-chevron-left button-clear button-dark">Back</a>
<br />
<button class="button icon ion-gear-a"></button>
<br />
<a class="button button-icon icon ion-settings"></a>
<br />
<a class="button button-outline icon-right ion-navicon button-balanced">Reorder</a>
</div>
</body>
</html>