blob: 943c2212b9a1ecf3515fa75c444eb494f6d27869 [file] [log] [blame]
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -08001<!DOCTYPE html>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17
18<!--
19 ONOS -- Displaying icons with Angular test page
20 -->
21
22<html>
23<head lang="en">
24 <meta charset="UTF-8">
25 <title>Practice Table Formatting</title>
26
27 <script type="text/javascript" src="../tp/angular.js"></script>
28 <script type="text/javascript" src="../tp/angular-route.js"></script>
29
30 <script type="text/javascript" src="../tp/d3.js"></script>
31 <script type="text/javascript" src="../tp/jquery-2.1.1.min.js"></script>
32
33 <script type="text/javascript" src="practice-table.js"></script>
34
35 <style>
36 html,
37 body {
38 background-color: #ddf;
39 font-family: Arial, Helvetica, sans-serif;
40 font-size: 9pt;
41 }
42
43 h2 {
44 color: darkred;
45 }
46
47 </style>
48
49</head>
50<!-- outline for using a controller in Angular -->
51<body ng-app="practiceTable">
52 <h2>Scrolling Table Practice</h2>
53 <div>
54 <table fixed-header>
55 <thead>
56 <tr>
57 <th>URI</th>
58 <th>Vendor</th>
59 <th>Hardware Version</th>
60 <th>Software Version</th>
61 <th>Serial Number</th>
62 <th>Protocol</th>
63 </tr>
64 </thead>
65 <tbody>
66 <tr>
67 <td>id</td>
68 <td>mfr</td>
69 <td>hw</td>
70 <td>sw</td>
71 <td>serial</td>
72 <td>protocol</td>
73 </tr>
74 <tr>
75 <td>id</td>
76 <td>mfr</td>
77 <td>hw</td>
78 <td>sw</td>
79 <td>serial</td>
80 <td>protocol</td>
81 </tr>
82 <tr>
83 <td>id</td>
84 <td>mfr</td>
85 <td>hw</td>
86 <td>sw</td>
87 <td>serial</td>
88 <td>protocol</td>
89 </tr>
90 <tr>
91 <td>id</td>
92 <td>mfr</td>
93 <td>hw</td>
94 <td>sw</td>
95 <td>serial</td>
96 <td>protocol</td>
97 </tr>
98 </tbody>
99 </table>
100 </div>
101
102</body>
103</html>