forked from OfficeDev/Office-Add-in-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (32 loc) · 1.6 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
<!-- Copyright (c) Microsoft Corporation.
Licensed under the MIT License. -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contoso Task Pane Add-in</title>
<!-- Office JavaScript API -->
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/beta/hosted/office.js"></script>
<!-- For more information on Office UI Fabric, visit https://developer.microsoft.com/fabric. -->
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-core/9.6.1/css/fabric.min.css"/>
<!-- Template styles -->
<link href="index.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="index.js"></script>
</head>
<body class="ms-font-m ms-welcome ms-Fabric">
<!-- The following image URL tracks diagnostic data for this sample add-in. Please remove the image tag if you reuse this sample in your own code project. -->
<img src="https://pnptelemetry.azurewebsites.net/pnp-officeaddins/samples/excel-insert-external-file-run" />
<section class="ms-font-m">
<p>This sample shows how to copy the worksheets from an existing workbook into the current workbook.</p>
</section>
<section class="samples ms-font-m">
<h3>Try it out</h3>
<p>Select an Excel workbook to copy its worksheets into the current workbook.</p>
<form>
<input type="file" id="fileInput" />
</form>
</section>
</body>
</html>