File size: 1,184 Bytes
6d2946b |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Organization Card</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="card">
<div class="logo-container">
<img src="steer.png" alt="Company Logo" class="logo">
</div>
<div class="content">
<h1 class="company-name">Your Company Name</h1>
<p class="description">A brief description of your company goes here. Mention your mission, values, and what makes your company unique.</p>
<div class="social-media">
<a href="https://x.com/SteerAutos" target="_blank">
<img src="twitter.png" alt="Twitter" class="social-icon">
</a>
<a href="https://www.linkedin.com/company/steersolution/" target="_blank">
<img src="linkedin.png" alt="LinkedIn" class="social-icon">
</a>
<!-- Add more social media links as needed -->
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
|