| <!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>chip 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;"> |
| |
| |
| <!-- Basic Chip --> |
| <span class="mdl-chip"> |
| <span class="mdl-chip__text">Basic Chip</span> |
| </span> |
| <!-- Button Chip --> |
| <button type="button" class="mdl-chip"> |
| <span class="mdl-chip__text">Button Chip</span> |
| </button> |
| <!-- Contact Chip --> |
| <span class="mdl-chip mdl-chip--contact"> |
| <span class="mdl-chip__contact mdl-color--teal mdl-color-text--white">A</span> |
| <span class="mdl-chip__text">Contact Chip</span> |
| </span> |
| |
| <!-- Deletable Contact Chip --> |
| <span class="mdl-chip mdl-chip--contact mdl-chip--deletable"> |
| <img class="mdl-chip__contact" src="/templates/dashboard/images/user.jpg"></img> |
| <span class="mdl-chip__text">Deletable Contact Chip</span> |
| <a href="#" class="mdl-chip__action"><i class="material-icons">cancel</i></a> |
| </span> |
| <!-- Deletable Chip --> |
| <span class="mdl-chip mdl-chip--deletable"> |
| <span class="mdl-chip__text">Deletable Chip</span> |
| <button type="button" class="mdl-chip__action"><i class="material-icons">cancel</i></button> |
| </span> |
| |
| </div> |
| <!-- Built with love using Material Design Lite --> |
| |
| |
| <script> |
| |
| </script> |
| </body> |
| </html> |