-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1012 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Credit_Card_Report</title>
<style>
*{
padding: 0;
margin: 0;
}
.container {
position: relative;
/* overflow: hidden; */
width: 100vw;
height: 100vh;
}
/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}</style>
</head>
<body>
<div class="container">
<iframe title="Credit_Card_Report" class="responsive-iframe" src="https://app.powerbi.com/view?r=eyJrIjoiZTgxNTlkYjgtZTVkMy00YjExLTkxYjgtNGI5YjE3ODY2ZWEyIiwidCI6ImE0N2MzZjAzLTJhZGEtNDQ5My1hNjE0LWI1MjJjOTgwNDRjNCIsImMiOjEwfQ%3D%3D" frameborder="0" allowFullScreen="true"></iframe>
</div>
</body>
</html>