This repository has been archived on 2025-01-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mexc-trade/templates/index.html
dongho 82e1b74aee
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 4m22s
fixed title on coin live and added ul on index.html
2024-12-21 16:13:29 +00:00

48 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Billionaire yes</title>
<style>
/* Add your CSS here */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<!-- Add your content here -->
<header>
<h1>To Become Billionaire</h1>
</header>
<main>
<section>
<h2>Interested Coin Price Live Chart</h2>
<ul>
{% for coin in coins %}
<li><a href="/coin/{{coin}}">{{coin}}</a></li>
{% endfor %}
</ul>
<h2>Interested Coin Price Candle Live Chart</h2>
<ul>
{% for coin in coins %}
<li><a href="/coin/{{coin}}/candle1min">{{coin}}</a></li>
{% endfor %}
</ul>
</section>
</main>
<footer>
<p>&copy; 2024 Dongho Kim</p>
</footer>
<script>
// Add your JavaScript here
</script>
</body>
</html>