A world where technology and human intelligence come together.
What is A.I.?
A.I. stands for Artificial Intelligence, which refers to the development of computer systems able to perform tasks that
typically require human intelligence.
Key Features:
Machine Learning
Natural Language Processing
Computer Vision
Robotics
About A.I.
A.I. has revolutionized the way we live and work, transforming industries such as healthcare, finance, education, and
transportation.
Interesting Facts:
A.I. has increased efficiency by 50% in the healthcare industry.
A.I. has improved customer satisfaction by 30% in the finance industry.
A.I. has enabled machines to learn and adapt faster than humans.
Get in Touch
Have a question or want to collaborate? Let's talk!
```
**styles.css**
```css
/* Global Styles */
* {
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Header Styles */
#header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}
#nav-bar {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
}
#nav-bar li {
margin-right: 20px;
}
#nav-bar a {
color: #fff;
text-decoration: none;
}
/* Hero Styles */
#hero {
background-image: linear-gradient(to bottom, #f0f0f0, #333);
background-size: cover;
padding: 5rem 2rem;
}
#hero h1 {
font-weight: bold;
}
/* Feature Styles */
#features ul {
list-style: none;
margin: 0;
padding: 0;
}
#features li {
margin-bottom: 10px;
}
/* Fact Styles */
#facts ul {
list-style: none;
margin: 0;
padding: 0;
}
#facts li {
margin-bottom: 10px;
}
```
**script.js**
```javascript
// Selecting elements
const heroButton = document.querySelector("#hero button");
const contactForm = document.querySelector("#contact-form");
// Event listeners
heroButton.addEventListener("click", () => {
alert("Learn more about A.I.");
});
contactForm.addEventListener("submit", (e) => {
e.preventDefault();
const formData = new FormData(contactForm);
// Send form data to server-side API or email service
});
```