-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis.html
More file actions
75 lines (65 loc) · 3.08 KB
/
analysis.html
File metadata and controls
75 lines (65 loc) · 3.08 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WLZBPQD838"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WLZBPQD838');
</script>
<title>OpenExcelExport - Analysis</title>
</head>
<body>
<script src="topbar.js "></script>
<script src="header.js "></script>
<div class="container my-5">
<div class="col-md-12">
<h2>Analysis</h2>
<p>The output Excel file contains the result of the analysis of the input excel file.There are 7 sheets.</p>
<div class="col-md-12">
<h2>Sheet #1 : Abstract</h2>
<p>Contains general informations.</p>
<img src="images/excel_res_sheet1.jpg" class="mb-4" width="750" alt="Excel result, sheet #1 - abstract" >
</div>
<div class="col-md-12">
<h2>Sheet #2 : list of cells with details</h2>
<p>Contains list of first cells with a lot of details. The number of loaded cell details is limited.</p>
<img src="images/excel_res_sheet2_cells.jpg" class="mb-4" width="850" alt="Excel result, sheet #2 - first cells details">
</div>
<div class="col-md-12">
<h2>Sheet #3: SharedStrings</h2>
<p>Contains list of shared strings defined the Excel file. The number of loaded shared strings is limited.</p>
<img src="images/excel_res_sheet3_strings.jpg" class="mb-4" width="850" alt="Excel result, sheet #3 - first SharedStrings">
</div>
<div class="col-md-12">
<h2>Sheet #4: Styles-CellFormats</h2>
<br><p>Contains styles definition, which are cellformats.</p>
<img src="images/excel_res_sheet4_styles.jpg" class="mb-4" width="850" alt="Excel result, sheet #4 - Styles-CellFormats by sheet">
</div>
<div class="col-md-12">
<h2>Sheet #5: Fills</h2>
<p>Contains fills definition by sheet (cell background color)</p>
<img src="images/excel_res_sheet5_fills.jpg" class="mb-4" width="850" alt="Excel result, sheet #5 - Fills definition by sheet">
</div>
<div class="col-md-12">
<h2>Sheet #6: Borders</h2>
<p>Contains borders definition by sheet (cell border color)</p>
<img src="images/excel_res_sheet6_borders.jpg" class="mb-4" width="850" alt="Excel result, sheet #6 - borders definition by sheet">
</div>
<div class="col-md-12">
<h2>Sheet #7: Fonts</h2>
<p>Contains fonts definition by sheet</p>
<img src="images/excel_res_sheet7_fonts.jpg" class="mb-4" width="850" alt="Excel result, sheet #7 - Fonts definition by sheet">
</div>
</div>
<script src="footer.js "></script>
</body>
</html>