atjm0928 / atjm

0 stars 0 forks source link

Robots #1

Open ATJM12 opened 1 month ago

ATJM12 commented 1 month ago
<!DOCTYPE html>
<html>
<head>
  <title>Copy the Top 5 Traders on MT4</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f2f2f2;
      padding: 20px;
    }
    .container {
      background-color: white;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    h1 {
      text-align: center;
      color: #333;
    }
    .trader-box {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .trader-box img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 10px;
    }
    .trader-details h3 {
      margin: 0;
      color: #333;
    }
    .trader-details p {
      margin: 5px 0 0 0;
      color: #666;
    }
    .copy-button {
      background-color: #4CAF50;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-left: auto;
    }
    .copy-button:hover {
      background-color: #45a049;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Copy the Top 5 Traders on MT4</h1>
    <div class="trader-box">
      <img src="https://example.com/trader1.jpg" alt="Trader 1">
      <div class="trader-details">
        <h3>John Doe</h3>
        <p>Experienced trader with consistent returns</p>
      </div>
      <button class="copy-button">Copy to MT4</button>
    </div>
    <div class="trader-box">
      <img src="https://example.com/trader2.jpg" alt="Trader 2">
      <div class="trader-details">
        <h3>Jane Smith</h3>
        <p>High-performing trader with a proven track record</p>
      </div>
      <button class="copy-button">Copy to MT4</button>
    </div>
    <div class="trader-box">
      <img src="https://example.com/trader3.jpg" alt="Trader 3">
      <div class="trader-details">
        <h3>Michael Johnson</h3>
        <p>Successful trader with a focus on risk management</p>
      </div>
      <button class="copy-button">Copy to MT4</button>
    </div>
    <div class="trader-box">
      <img src="https://example.com/trader4.jpg" alt="Trader 4">
      <div class="trader-details">
        <h3>Emily Davis</h3>
        <p>Trader with a strong analytical approach</p>
      </div>
      <button class="copy-button">Copy to MT4</button>
    </div>
    <div class="trader-box">
      <img src="https://example.com/trader5.jpg" alt="Trader 5">
      <div class="trader-details">
        <h3>David Lee</h3>
        <p>Experienced trader with a diverse portfolio</p>
      </div>
      <button class="copy-button">Copy to MT4</button>
    </div>
  </div>
</body>
</html>