Skip to content

Instantly share code, notes, and snippets.

@infantiablue
Last active April 28, 2021 09:05
Show Gist options
  • Save infantiablue/4e9c0b1aa740df240e736b26575a9ad2 to your computer and use it in GitHub Desktop.
Save infantiablue/4e9c0b1aa740df240e736b26575a9ad2 to your computer and use it in GitHub Desktop.
index file
<!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>Realtime Chart</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<span class="text-capitalize ps-3">
<a class="navbar-brand text-primary fw-bold" href="/"> <img src="/ico/eth.png" />ETH Chart </a>
</span>
</nav>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment