forked from MIchaelMainer/Add-in-TaskPane-Sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 1009 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title>My First Task Pane App</title>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/1.0/fabric.min.css">
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/1.0/fabric.components.min.css">
<link href="styles.css" rel="stylesheet" type="text/css" />
<script src="script.js" type="text/javascript"></script>
</head>
<body class="ms-font-m">
<div id="content">
<p><strong>Select some data in the document, and then press the button below.</strong></p>
<p id="display-data">You haven't selected any data yet.</p>
<button id="get-data-from-selection" class="ms-Button">Get data from selection</button>
</div>
</body>
</html>