| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Collaborators Marquee</title> |
| <style> |
| |
| body { |
| font-family: 'Helvetica', 'Arial', sans-serif; |
| margin: 0; |
| padding: 50px; |
| background-color: #fff; |
| } |
| |
| .collaborators-section { |
| max-width: 1200px; |
| margin: 0 auto; |
| overflow: hidden; |
| } |
| |
| |
| .section-label { |
| font-size: 12px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| color: #e0e0e0; |
| text-transform: uppercase; |
| margin-bottom: 30px; |
| } |
| |
| |
| .marquee-window { |
| width: 100%; |
| overflow: hidden; |
| margin-bottom: 30px; |
| white-space: nowrap; |
| position: relative; |
| } |
| |
| |
| .marquee-track { |
| display: inline-block; |
| animation: scroll 20s linear infinite; |
| } |
| |
| |
| .marquee-track:hover { |
| animation-play-state: paused; |
| } |
| |
| |
| .collab-item { |
| font-size: 24px; |
| font-weight: 800; |
| color: #bfbfbf; |
| text-decoration: none; |
| margin-right: 80px; |
| display: inline-block; |
| transition: color 0.3s ease; |
| } |
| |
| .collab-item:hover { |
| color: #555; |
| } |
| |
| |
| @keyframes scroll { |
| 0% { |
| transform: translateX(0); |
| } |
| 100% { |
| transform: translateX(-50%); |
| } |
| } |
| |
| |
| .button-container { |
| display: flex; |
| justify-content: flex-end; |
| width: 100%; |
| padding-right: 10px; |
| } |
| |
| .view-all-btn { |
| padding: 10px 20px; |
| background-color: transparent; |
| border: 2px solid #e0e0e0; |
| color: #888; |
| font-weight: 600; |
| text-decoration: none; |
| border-radius: 4px; |
| font-size: 13px; |
| transition: all 0.3s ease; |
| } |
| |
| .view-all-btn:hover { |
| border-color: #333; |
| color: #333; |
| } |
| </style> |
| </head> |
| <body> |
|
|
| <section class="collaborators-section"> |
| |
| <div class="section-label">Trusted by Collaborators</div> |
|
|
| |
| <div class="marquee-window"> |
| |
| <div class="marquee-track"> |
| |
| <a href="#" class="collab-item">English with Komal</a> |
| <a href="#" class="collab-item">Date Tech Pakistan</a> |
| <a href="#" class="collab-item">She's Beyond</a> |
| <a href="#" class="collab-item">DevQuest PK</a> |
| |
| |
| <a href="#" class="collab-item">English with Komal</a> |
| <a href="#" class="collab-item">Date Tech Pakistan</a> |
| <a href="#" class="collab-item">She's Beyond</a> |
| <a href="#" class="collab-item">DevQuest PK</a> |
| </div> |
| </div> |
|
|
| |
| <div class="button-container"> |
| <a href="#" class="view-all-btn">View all Collaborators →</a> |
| </div> |
| </section> |
|
|
| </body> |
| </html> |