This repository has been archived by the owner on Jan 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
86 lines (86 loc) · 1.59 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>P2P BTC</title>
<style>
header {
background-color: orange;
}
table {
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 10px;
text-align: center;
}
button {
background-color: orange;
color: white;
padding: 10px;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Buy BTC</a></li>
<li><a href="#">Sell BTC</a></li>
<li><a href="#">Open Trades</a></li>
<li><a href="#">My Offers</a></li>
<li><a href="#">My Wallet</a></li>
</ul>
</nav>
</header>
<main>
<h1>P2P BTC: Pairs </h1>
<label for="search">Search Trades:</label>
<input type="text" id="search" name="search">
<table>
<thead>
<tr>
<th>Trade Type</th>
<th>Amount</th>
<th>Payment Method</th>
<th>Price</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>Buy BTC</td>
<td>0.5 BTC</td>
<td>Bank Transfer</td>
<td>USD 50,000</td>
<td><button>Trade</button></td>
</tr>
<tr>
<td>Sell BTC</td>
<td>1.0 BTC</td>
<td>Cash Deposit</td>
<td>USD 48,000</td>
<td><button>Trade</button></td>
</tr>
<tr>
<td>Buy BTC</td>
<td>0.2 BTC</td>
<td>Cash in Person</td>
<td>EUR 35,000</td>
<td><button>Trade</button></td>
</tr>
<tr>
<td>Sell BTC</td>
<td>0.1 BTC</td>
<td>Cash by Mail</td>
<td>USD 4,000</td>
<td><button>Trade</button></td>
</tr>
</tbody>
</table>
<button>Create Trade</button>
</main>
</body>
</html>