-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 785 Bytes
/
index.html
File metadata and controls
29 lines (28 loc) · 785 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Crypto App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Welcome to my Crypto Wallet App</h1>
<div class="main">
<div class="buttons">
<div class="button"><p id="bitcoin">Bitcoin</p></div>
<div class="button"><p id="ethereum">Ethereum</p></div>
<div class="button"> <p id="solana">Solana</p></div>
</div>
<div class="searchbar">
<form id="submit-form" action="#">
<input type="text" id="input" placeholder="Public Key">
<button type="submit" id="button-submit">Submit</button>
</form>
</div>
<div class="result">
<p>This is the balance of your portfolio</p>
</div>
</div>
<script src="app.js"></script>
</body>
</html>