-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo-tab
1 lines (1 loc) · 1.09 KB
/
demo-tab
1
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <title>Customized Tab</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" /> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> <!--JS File to use ng-Tab--> <script src="js/ng-tab.js"></script></head><body> <body ng-app="components"> <h3>BootStrap Tab Component</h3> <tabs> <pane title="First Tab"> <div>This is the content of the first tab.</div> </pane> <pane title="Second Tab"> <div>This is the content of the second tab.</div> </pane> <pane title="Third Tab"> <div>This is the content of the second tab.</div> </pane> </tabs> </body></body></html>