Ayo38 commited on
Commit
47c5b41
·
verified ·
1 Parent(s): 4ff1d2a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +79 -16
index.html CHANGED
@@ -3,28 +3,91 @@
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>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AI Startup Landing Page</title>
7
  <link rel="stylesheet" href="styles.css">
8
+ <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
9
  </head>
10
  <body>
11
+ <header>
12
+ <nav>
13
+ <div class="logo">AI Startup</div>
14
+ <ul>
15
+ <li><a href="#features">Features</a></li>
16
+ <li><a href="#team">Team</a></li>
17
+ <li><a href="#contact">Contact</a></li>
18
+ </ul>
19
+ </nav>
20
+ </header>
21
+
22
+ <section id="hero">
23
+ <div class="hero-content">
24
+ <h1>Revolutionizing AI Technology</h1>
25
+ <p>Discover the future of artificial intelligence with our cutting-edge solutions designed to empower businesses worldwide.</p>
26
+ <a href="#contact" class="cta-button">Get Started</a>
27
  </div>
28
+ </section>
29
+
30
+ <section id="features">
31
+ <h2>Features</h2>
32
+ <div class="features-container">
33
+ <div class="feature">
34
+ <img src="feature1.png" alt="Feature 1">
35
+ <h3>Advanced Algorithms</h3>
36
+ <p>Our AI algorithms are state-of-the-art, offering unparalleled accuracy and efficiency.</p>
37
+ </div>
38
+ <div class="feature">
39
+ <img src="feature2.png" alt="Feature 2">
40
+ <h3>Scalable Solutions</h3>
41
+ <p>Scalable AI solutions that grow with your business, ensuring long-term success.</p>
42
+ </div>
43
+ <div class="feature">
44
+ <img src="feature3.png" alt="Feature 3">
45
+ <h3>Real-Time Analytics</h3>
46
+ <p>Gain insights with real-time analytics, helping you make informed decisions quickly.</p>
47
+ </div>
48
+ </div>
49
+ </section>
50
+
51
+ <section id="team">
52
+ <h2>Our Team</h2>
53
+ <div class="team-container">
54
+ <div class="team-member">
55
+ <img src="team1.jpg" alt="Team Member 1">
56
+ <h3>Jane Doe</h3>
57
+ <p>CEO & Founder</p>
58
+ </div>
59
+ <div class="team-member">
60
+ <img src="team2.jpg" alt="Team Member 2">
61
+ <h3>John Smith</h3>
62
+ <p>CTO</p>
63
+ </div>
64
+ <div class="team-member">
65
+ <img src="team3.jpg" alt="Team Member 3">
66
+ <h3>Emily Johnson</h3>
67
+ <p>Lead Data Scientist</p>
68
  </div>
69
  </div>
70
+ </section>
71
+
72
+ <section id="contact">
73
+ <h2>Contact Us</h2>
74
+ <form>
75
+ <label for="name">Name</label>
76
+ <input type="text" id="name" name="name" required>
77
+
78
+ <label for="email">Email</label>
79
+ <input type="email" id="email" name="email" required>
80
+
81
+ <label for="message">Message</label>
82
+ <textarea id="message" name="message" required></textarea>
83
+
84
+ <button type="submit">Submit</button>
85
+ </form>
86
+ </section>
87
+
88
+ <footer>
89
+ <p>&copy; 2024 AI Startup. All rights reserved.</p>
90
+ </footer>
91
 
92
  <script src="script.js"></script>
93
  </body>