31 lines
635 B
HTML
31 lines
635 B
HTML
<!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">
|
|
<title>Document</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
iframe, embed, object {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Try iframe first -->
|
|
<iframe src="../../brag-sheet-rsi/main.pdf"></iframe>
|
|
|
|
<!-- If iframe fails, fallback viewer -->
|
|
<object data="../../brag-sheet-rsi/main.pdf" type="application/pdf"></object>
|
|
|
|
</body>
|
|
</html> |