code.html
code.html
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multi-Network Web3 Wallet</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Multi-Network Web3 Wallet</h1>
<div id="walletInfo">
<button id="connectButton">Connect Wallet</button>
<p>Your Wallet Address: <span id="walletAddress">Not connected</span></p>
<p>Your Network: <span id="network">Not connected</span></p>
<p>Balance (ETH): <span id="ethBalance">0</span></p>
<p>Balance (BNB): <span id="bnbBalance">0</span></p>
<p>Balance (BTC): <span id="btcBalance">0</span></p>
<p>Balance (Arbitrum): <span id="arbitrumBalance">0</span></p>
</div>
<h2>Send Cryptocurrency</h2>
<div>
<input type="text" id="recipientAddress" placeholder="Recipient Address">
<input type="number" id="amount" placeholder="Amount">
<button id="sendButton">Send</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ethers.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.umd.min.js"></script>
<script src="app.js"></script>
</div>
</body>
</html>