-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (83 loc) · 2.71 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JS Excel</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!--Emmet: section container-->
<section class="container">
<h1>JS <span id="title-part">Sheet</span></h1>
<h2>A JS-based Spreadsheet</h2>
<table>
<thead>
<tr>
<th id="upleft"></th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
<th>F</th>
<th>G</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Product</td>
<td>Cost</td>
<td>Price</td>
<td>Profit</td>
<td>Units Projected</td>
<td>Total Sales</td>
<td>Profit</td>
</tr>
<tr class="highlight">
<td>2</td>
<td>Chocolate Raisins</td>
<td>20.95</td>
<td>35.95</td>
<td>15</td>
<td id="units" contenteditable="true">700</td>
<td>25165</td>
<td>10500</td>
</tr>
<tr class="highlight">
<td>3</td>
<td>Chocolate Raisins</td>
<td>20.95</td>
<td>35.95</td>
<td>15</td>
<td>700</td>
<td>25165</td>
<td>10500</td>
</tr>
</tbody>
</table>
<p>
<span class="capital">L</span>orem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum praesentium
laborum consequatur ad quo cum voluptates excepturi exercitationem iste. Est voluptas illum necessitatibus
enim
aperiam corporis dicta nostrum dolor sit!
</p>
<p>
<span class="capital">C</span>onsequatur, sint iste?Dolorum magni repudiandae perspiciatis veritatis
provident
ipsa molestias iure corrupti, non laborum molestiae dolor esse culpa! Officiis veritatis dolore ullam rerum
commodi voluptates iusto? Similique earum magnam aspernatur cupiditate id.
</p>
</section>
<script src="excel.js"></script>
</body>
</html>