tool-box

💾 Shakeel File

🌐 ShakeelFile.com

<!-- tool-box -->
<div class="tool-box">
  <h2>
    <span class="tool-icon">💾</span>
    Shakeel File
  </h2>
  <p>
    <span class="site-icon">🌐</span>
    ShakeelFile.com
  </p>
</div>

<!-- style -->
<style>
  .tool-box {
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    padding: 18px 22px;
    margin: 40px 0;
    background: tranpand;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s ease;
  }

  .tool-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .tool-box h2 {
    color: #0b5394;
    margin-bottom: 8px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .tool-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
</style>

Post a Comment