blob: 867f29f7e2ddca27f6ea3f93cbc3dfcdee65c5f0 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <title>data-table test</title>
9
10 <!-- Fonts -->
11 <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&amp;lang=en' rel='stylesheet' type='text/css'>
12 <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
13 rel="stylesheet">
14
15 <!-- Page styles -->
16 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css">
17 <link rel="stylesheet" href="../../material.min.css">
18 <link rel="stylesheet" href="../../components/demos.css">
19 <script src="../../material.min.js"></script>
20
21
22 <style>
23
24 </style>
25
26 </head>
27 <body>
28
29 <div style="padding-top: 24px;">
30
31
32<table class="mdl-data-table mdl-js-data-table mdl-data-table--selectable mdl-shadow--2dp">
33 <thead>
34 <tr>
35 <th class="mdl-data-table__cell--non-numeric">Material</th>
36 <th>Quantity</th>
37 <th>Unit price</th>
38 </tr>
39 </thead>
40 <tbody>
41 <tr>
42 <td class="mdl-data-table__cell--non-numeric">Acrylic (Transparent)</td>
43 <td>25</td>
44 <td>$2.90</td>
45 </tr>
46 <tr>
47 <td class="mdl-data-table__cell--non-numeric">Plywood (Birch)</td>
48 <td>50</td>
49 <td>$1.25</td>
50 </tr>
51 <tr>
52 <td class="mdl-data-table__cell--non-numeric">Laminate (Gold on Blue)</td>
53 <td>10</td>
54 <td>$2.35</td>
55 </tr>
56 </tbody>
57</table>
58
59
60 </div>
61 <!-- Built with love using Material Design Lite -->
62
63
64 <script>
65
66 </script>
67 </body>
68</html>