<!-- | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Steer AI</title> | |
<link rel="stylesheet" href="styles.css"> | |
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet"> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<div class="logo">Steer AI</div> | |
<ul> | |
<li><a href="#features">Features</a></li> | |
<li><a href="#team">Team</a></li> | |
<li><a href="#contact">Contact</a></li> | |
</ul> | |
</nav> | |
</header> | |
<section id="hero"> | |
<div class="hero-content"> | |
<h1>Revolutionizing the auto industry</h1> | |
<p>Discover the future of artificial intelligence with our cutting-edge solutions designed to empower businesses worldwide.</p> | |
<a href="#contact" class="cta-button">Get Started</a> | |
</div> | |
</section> | |
<section id="features"> | |
<h2>Features</h2> | |
<div class="features-container"> | |
<div class="feature"> | |
<img src="feature1.png" alt="Feature 1"> | |
<h3>Advanced Algorithms</h3> | |
<p>Our AI algorithms are state-of-the-art, offering unparalleled accuracy and efficiency.</p> | |
</div> | |
<div class="feature"> | |
<img src="feature2.png" alt="Feature 2"> | |
<h3>Scalable Solutions</h3> | |
<p>Scalable AI solutions that grow with your business, ensuring long-term success.</p> | |
</div> | |
<div class="feature"> | |
<img src="feature3.png" alt="Feature 3"> | |
<h3>Real-Time Analytics</h3> | |
<p>Gain insights with real-time analytics, helping you make informed decisions quickly.</p> | |
</div> | |
</div> | |
</section> | |
<section id="team"> | |
<h2>Our Team</h2> | |
<div class="team-container"> | |
<div class="team-member"> | |
<img src="team1.jpg" alt="Team Member 1"> | |
<h3>Jane Doe</h3> | |
<p>CEO & Founder</p> | |
</div> | |
<div class="team-member"> | |
<img src="team2.jpg" alt="Team Member 2"> | |
<h3>John Smith</h3> | |
<p>CTO</p> | |
</div> | |
<div class="team-member"> | |
<img src="team3.jpg" alt="Team Member 3"> | |
<h3>Emily Johnson</h3> | |
<p>Lead Data Scientist</p> | |
</div> | |
</div> | |
</section> | |
<section id="contact"> | |
<h2>Contact Us</h2> | |
<form> | |
<label for="name">Name</label> | |
<input type="text" id="name" name="name" required> | |
<label for="email">Email</label> | |
<input type="email" id="email" name="email" required> | |
<label for="message">Message</label> | |
<textarea id="message" name="message" required></textarea> | |
<button type="submit">Submit</button> | |
</form> | |
</section> | |
<footer> | |
<p>© 2024 AI Startup. All rights reserved.</p> | |
</footer> | |
<script src="script.js"></script> | |
</body> | |
</html> | |
-> |