-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 946 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Crypto Portfolio</h1>
<table id="cryptoTable">
<thead>
<tr>
<th>Name</th>
<th>Symbol</th>
<th>Price (USD)</th>
<th>Last Updated</th>
<th>Amount</th>
<th>Total Value</th>
</tr>
</thead>
<tbody>
<!-- Data will be dynamically added here using JavaScript -->
</tbody>
</table>
<p id="totalPortfolioValue">Total Value Portfolio: $0.00</p>
</div>
<script src="app.js"></script>
</body>
</html>