| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps."> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <title>tabs test</title> |
| |
| <!-- Fonts --> |
| <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet' type='text/css'> |
| <link href="https://fonts.googleapis.com/icon?family=Material+Icons" |
| rel="stylesheet"> |
| |
| <!-- Page styles --> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css"> |
| <link rel="stylesheet" href="../../material.min.css"> |
| <link rel="stylesheet" href="../../components/demos.css"> |
| <script src="../../material.min.js"></script> |
| |
| |
| <style> |
| |
| </style> |
| |
| </head> |
| <body> |
| |
| <div style="padding-top: 24px;"> |
| |
| |
| <div class="mdl-tabs mdl-js-tabs mdl-js-ripple-effect"> |
| <div class="mdl-tabs__tab-bar"> |
| <a href="#starks-panel" class="mdl-tabs__tab is-active">Starks</a> |
| <a href="#lannisters-panel" class="mdl-tabs__tab">Lannisters</a> |
| <a href="#targaryens-panel" class="mdl-tabs__tab">Targaryens</a> |
| </div> |
| |
| <div class="mdl-tabs__panel is-active" id="starks-panel"> |
| <ul> |
| <li>Eddard</li> |
| <li>Catelyn</li> |
| <li>Robb</li> |
| <li>Sansa</li> |
| <li>Brandon</li> |
| <li>Arya</li> |
| <li>Rickon</li> |
| </ul> |
| </div> |
| <div class="mdl-tabs__panel" id="lannisters-panel"> |
| <ul> |
| <li>Tywin</li> |
| <li>Cersei</li> |
| <li>Jamie</li> |
| <li>Tyrion</li> |
| </ul> |
| </div> |
| <div class="mdl-tabs__panel" id="targaryens-panel"> |
| <ul> |
| <li>Viserys</li> |
| <li>Daenerys</li> |
| </ul> |
| </div> |
| </div> |
| |
| |
| </div> |
| <!-- Built with love using Material Design Lite --> |
| |
| |
| <script> |
| |
| </script> |
| </body> |
| </html> |