-
Notifications
You must be signed in to change notification settings - Fork 0
/
embeddedviewer.html
43 lines (28 loc) · 1.62 KB
/
embeddedviewer.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">
<link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
<script src="js/scripts.js"></script>
<h1>Embedded File Test</h1>
<p>This is just a quick test to demonstrate that it would be possible to preview the files uploaded to a corporate deliverable using "Office Web Apps Viewer" using the following link: http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]</p>
<h2>Word File</h2>
<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=https://github.com/muzza3000/3DFiles/blob/master/Word.docx?raw=true' width='800px' height='1000px' frameborder='0'>
</iframe>
<h2>Excel File</h2>
<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=https://github.com/muzza3000/3DFiles/blob/master/ExampleWorkbook.xlsx?raw=true' width='800px' height='500px' frameborder='0'>
</iframe>
<h2>PPT File</h2>
<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=https://github.com/muzza3000/3DFiles/blob/master/Presentation.pptx?raw=true' width='800px' height='500px' frameborder='0'>
</iframe>
<h2>PDF File</h2>
<iframe src="https://docs.google.com/viewer?url=https://raw.githubusercontent.com/muzza3000/3DFiles/bd2c5922af8e70999ede0ca09074b0298f7c3c20/BOP%20Page%201.pdf&embedded=true" width='800' height='1000'></iframe>
<h2>JPG File</h2>
<img src='https://raw.githubusercontent.com/muzza3000/3DFiles/master/Customer.jpg' >
</body>
</html>