-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 1.13 KB
/
index.html
File metadata and controls
28 lines (26 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tabs Directive</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="app">
<h1>Tabs, tabs, tabs!</h1>
<tabset>
<tab heading="Tab 1">
Lorem ipsum dolor sit amet, ut eam nullam utroque liberavisse, ea
graecis tractatos contentiones quo. Ipsum phaedrum scripserit sit id,
eu insolens indoctum vel, eos eu offendit delectus tincidunt. Eum
nostrum reprehendunt in, ullum nostrud legimus ei quo. Sed et elitr
corrumpit. Nibh maiestatis voluptatum has no, at est inermis epicuri,
omnis temporibus cu mei. Legere scriptorem voluptatibus et est, ea
noluisse deterruisset sea.
</tab>
<tab heading="Tab 2">
Just another tab!
</tab>
</tabset>
</body>
</html>