Forex Trading Platform Development

Job ID: 40311880

Budget: ₹600 – ₹1,500 INR

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forex Ninja</title>

<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f5f6fa;
}

/* Header */
.header {
background: white;
padding: 15px;
text-align: center;
font-size: 22px;
font-weight: bold;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Balance Card */
.balance {
background: white;
margin: 15px;
padding: 20px;
border-radius: 15px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.balance h2 {
margin: 0;
font-size: 18px;
color: gray;
}

.balance p {
font-size: 28px;
margin: 5px 0;
font-weight: bold;
}

/* Buttons */
.buttons {
display: flex;
justify-content: space-around;
margin: 15px;
}

button {
padding: 12px 20px;
border: none;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
}

.buy {
background: #2ecc71;
color: white;
}

.sell {
background: #e74c3c;
color: white;
}

/* Currency List */
.list {
margin: 15px;
}

.item {
background: white;
padding: 15px;
margin-bottom: 10px;
border-radius: 12px;
display: flex;
justify-content: space-between;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.up {
color: green;
}

.down {
color: red;
}

/* Footer */
.footer {
position: fixed;
bottom: 0;
width: 100%;
background: white;
display: flex;
justify-content: space-around;
padding: 10px;
box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}
</style>
</head>

<body>

<div class="header">Forex Ninja</div>

<div class="balance">
<h2>Balance</h2>
<p>$12,450</p>
</div>

<div class="buttons">
<button class="buy">Buy</button>
<button class="sell">Sell</button>
</div>

<div class="list">
<div class="item">
<span>EUR/USD</span>
<span class="up">1.0845 ▲</span>
</div>
<div class="item">
<span>GBP/USD</span>
<span class="down">1.2620 ▼</span>
</div>
<div class="item">
<span>USD/JPY</span>
<span class="up">149.32 ▲</span>
</div>
</div>

<div class="footer">
<span>Home</span>
<span>Chart</span>
<span>Trade</span>
<span>Profile</span>
</div>

</body>
</html>