mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
25 lines
390 B
HTML
25 lines
390 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<script src="../../node_modules/requirejs/require.js"></script>
|
|
<script src="viewer.js"></script>
|
|
<style>
|
|
body {
|
|
background-color: gray;
|
|
}
|
|
|
|
.pageContainer {
|
|
border : 1px solid black;
|
|
margin : 5px auto;
|
|
background-color : white;
|
|
}
|
|
</style>
|
|
|
|
<title>SVG Viewer Example</title>
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
|
|
</html>
|