77 lines
1.8 KiB
HTML
77 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Overview of Charts</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<style>
|
|
/* Simple navigation styling */
|
|
nav {
|
|
background: #222;
|
|
padding: 10px;
|
|
}
|
|
nav ul {
|
|
list-style: none;
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
nav li {
|
|
margin-right: 20px;
|
|
}
|
|
nav a {
|
|
color: #e0e0e0;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
nav a.active {
|
|
text-decoration: underline;
|
|
}
|
|
/* Responsive iframe container */
|
|
.iframe-container {
|
|
position: relative;
|
|
width: 100%;
|
|
padding-bottom: 56.25%; /* 16:9 ratio */
|
|
height: 0;
|
|
margin-bottom: 20px;
|
|
}
|
|
.iframe-container iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Calculator</a></li>
|
|
<li><a href="overview.html" class="active">Overview</a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="container">
|
|
<h1>Overview of Charts</h1>
|
|
<div class="iframe-container">
|
|
<iframe src="https://charts.bitbo.io/net-unrealized-profit-loss/"></iframe>
|
|
</div>
|
|
<div class="iframe-container">
|
|
<iframe src="https://charts.bitbo.io/pi-cycle-top/"></iframe>
|
|
</div>
|
|
<div class="iframe-container">
|
|
<iframe src="https://bitcoinition.com/charts/mvrv-z-score/"></iframe>
|
|
</div>
|
|
<div class="iframe-container">
|
|
<iframe src="https://www.coinglass.com/pro/i/PM"></iframe>
|
|
</div>
|
|
<div class="iframe-container">
|
|
<iframe src="https://www.blockchaincenter.net/en/bitcoin-rainbow-chart/"></iframe>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|