forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabs-icons-right.html
41 lines (38 loc) · 1.07 KB
/
tabs-icons-right.html
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
<!DOCTYPE html>
<html ng-app="ionic">
<head>
<script src="../../dist/js/ionic.bundle.js"></script>
<meta charset="utf-8">
<title>Tabs: Right Icons</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">
</head>
<body>
<header class="bar bar-header bar-dark">
<h1 class="title">Tabs: Right Icons</h1>
</header>
<nav class="tabs tabs-icon-right tabs-royal">
<a class="tab-item" href="#">
Fun
<i class="icon ion-game-controller-a"></i>
</a>
<a class="tab-item has-badge">
Light
<i class="badge">3</i>
<i class="icon ion-leaf"></i>
</a>
<a class="tab-item">
Clean
<i class="icon ion-waterdrop"></i>
</a>
<a class="tab-item disabled">
Disabled
<i class="icon ion-close-circled"></i>
</a>
<a disabled class="tab-item">
Inactive
<i class="icon ion-close"></i>
</a>
</nav>
</body>
</html>