<!-- Header Section -->
<header>
<h1>Crypto Exchange</h1>
<p>Your platform to trade cryptocurrency securely and instantly.</p>
</header>
<div class="container">
<!-- Market Summary Section -->
<section class="market-summary">
<h2 class="section-title">Market Summary</h2>
<table>
<thead>
<tr>
<th>Asset</th>
<th>Price</th>
<th>24h Change</th>
<th>Volume</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bitcoin (BTC)</td>
<td>$60,000</td>
<td>+2.5%</td>
<td>$1B</td>
</tr>
<tr>
<td>Ethereum (ETH)</td>
<td>$4,000</td>
<td>-1.2%</td>
<td>$800M</td>
</tr>
<tr>
<td>Ripple (XRP)</td>
<td>$1.10</td>
<td>+3.8%</td>
<td>$300M</td>
</tr>
</tbody>
</table>
</section>
<!-- Trading Section -->
<section class="trading-section">
<h2 class="section-title">Trade Cryptocurrency</h2>
<form>
<input type="text" placeholder="Enter Amount in USD" required>
<input type="text" placeholder="Enter Cryptocurrency (e.g., BTC)" required>
<button type="submit">Buy Crypto</button>
<button type="submit">Sell Crypto</button>
</form>
</section>
<!-- Order Book Section -->
<section class="order-book">
<h2 class="section-title">Order Book</h2>
<table>
<thead>
<tr>
<th>Price</th>
<th>Amount (BTC)</th>
<th>Total (USD)</th>
</tr>
</thead>
<tbody>
<tr>
<td>$59,900</td>
<td>0.5</td>
<td>$29,950</td>
</tr>
<tr>
<td>$60,100</td>
<td>0.3</td>
<td>$18,030</td>
</tr>
</tbody>
</table>
</section>
<!-- Trade History Section -->
<section class="trade-history">
<h2 class="section-title">Trade History</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Type</th>
<th>Price</th>
<th>Amount (BTC)</th>
</tr>
</thead>
<tbody>
<tr>
<td>12:45 PM</td>
<td>Buy</td>
<td>$60,000</td>
<td>0.1</td>
</tr>
<tr>
<td>12:43 PM</td>
<td>Sell</td>
<td>$60,200</td>
<td>0.2</td>
</tr>
</tbody>
</table>
</section>
<!-- Wallet Summary Section -->
<section class="wallet-summary">
<h2 class="section-title">Your Wallet</h2>
<p>BTC Balance: 0.5</p>
<p>USD Balance: $30,000</p>
</section>
</div>
Popular repositories Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.