-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.39 KB
/
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
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EBird Dataset Data Analysis</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff; /* Match your Power BI dashboard background color */
color: #333; /* Match your Power BI dashboard text color */
}
header {
background-color: #333; /* Match your Power BI dashboard header color */
color: #fff; /* Match your Power BI dashboard header text color */
padding: 15px;
text-align: center;
}
iframe {
width: 100%;
height: 800px;
border: none;
}
/* Add more styles as needed */
</style>
</head>
<body>
<header>
<h1>EBird Dataset Data Analysis</h1>
<p>Explore the bird data in Nadia, West Bengal</p>
</header>
<!-- Your additional content can be added here -->
<!-- Embed Power BI Report -->
<iframe title="Report Section" width="1024" height="1060" src="https://app.powerbi.com/view?r=eyJrIjoiN2E4MzRlM2EtOGU1NS00ZDZhLTg4YzYtODc4YjFkMjNjZGIyIiwidCI6ImIxMmNmMGI0LTg4NGEtNGE3Yy1hZGM2LWRmOTYxNjRiOTFiOCIsImMiOjF9" frameborder="0" allowFullScreen="true"></iframe>
</body>
</html>