-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
38 lines (37 loc) · 1.57 KB
/
example.html
File metadata and controls
38 lines (37 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Usage example</title>
<script src="graphs.js"></script>
</head>
<body>
<table class="graph" summary="Revenue per week">
<caption>Revenue by Solution <button>Revenue Analysis</button> <span>Revenue stream <b>$32,556</b></span></caption>
<thead><tr>
<th></th><th>Net Comp</th><th>AnalyzerHR</th><th>Question Right</th>
</tr></thead>
<tbody>
<tr><td>Week 48</td><td>600</td><td>450</td><td>300</td></tr>
<tr><td>Week 49</td><td>700</td><td>400</td><td>200</td></tr>
<tr><td>Week 50</td><td>800</td><td>550</td><td>300</td></tr>
<tr><td>Week 51</td><td>640</td><td>620</td><td>300</td></tr>
<tr><td>Week 52</td><td>300</td><td>150</td><td>0</td></tr>
</tbody>
</table>
<table class="graph bar" summary="Installations per day">
<caption>Installations <button>View Installations</button> <span>Installations <b>136</b></span></caption>
<thead><tr>
<th></th><th>Net Comp</th><th>AnalyzerHR</th><th>Question Right</th>
</tr></thead>
<tbody>
<tr><td>Week 48</td><td>6</td><td>4</td><td>3</td></tr>
<tr><td>Week 49</td><td>7</td><td>4</td><td>2</td></tr>
<tr><td>Week 50</td><td>8</td><td>5</td><td>3</td></tr>
<tr><td>Week 51</td><td>6</td><td>6</td><td>3</td></tr>
<tr><td>Week 52</td><td>3</td><td>1</td><td>0</td></tr>
</tbody>
</table>
</body>
</html>