Create index.html
Browse files- index.html +31 -0
index.html
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Organization Card</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div class="card">
|
11 |
+
<div class="logo-container">
|
12 |
+
<img src="steer.png" alt="Company Logo" class="logo">
|
13 |
+
</div>
|
14 |
+
<div class="content">
|
15 |
+
<h1 class="company-name">Your Company Name</h1>
|
16 |
+
<p class="description">A brief description of your company goes here. Mention your mission, values, and what makes your company unique.</p>
|
17 |
+
<div class="social-media">
|
18 |
+
<a href="https://x.com/SteerAutos" target="_blank">
|
19 |
+
<img src="twitter.png" alt="Twitter" class="social-icon">
|
20 |
+
</a>
|
21 |
+
<a href="https://www.linkedin.com/company/steersolution/" target="_blank">
|
22 |
+
<img src="linkedin.png" alt="LinkedIn" class="social-icon">
|
23 |
+
</a>
|
24 |
+
<!-- Add more social media links as needed -->
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
|
29 |
+
<script src="script.js"></script>
|
30 |
+
</body>
|
31 |
+
</html>
|