-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (76 loc) · 2.88 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./index.css" type="text/css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico">
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.3.2/html2canvas.min.js"></script>
<script src="./script.js"></script>
<head>
<title>Hot 10</title>
</head>
<body>
<div class="saveFrameContainer" id="saveFrameContainer">
<div class="titleContainer">
<h1 contenteditable="true">Chart Title (edit me!)</h1>
</div>
<div class="logoContainer">
<img src="./assets/hot10_logo.png" alt="Logo">
</div>
<div class="chartContainer" id="chartContainer">
<div class="table-container">
<table>
<thead>
<tr>
<th></th> <!-- blank on purpose -->
<th contenteditable="true">Title (edit me!)</th>
</tr>
</thead>
<tbody>
<tr>
<td contenteditable="false">1</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">2</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">3</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">4</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">5</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">6</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">7</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">8</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">9</td>
<td contenteditable="true"></td>
</tr>
<tr>
<td contenteditable="false">10</td>
<td contenteditable="true"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<button id="save-button">Save Chart</button>
</body>
</html>