<!DOCTYPE html>
<html>
<head>
<title>AI Website</title>
</head>
<body>
<h1>Welcome to the AI Website</h1>
<p>This website is dedicated to providing information about Artificial Intelligence and its various applications.</p>
<h2>What is AI?</h2>
<p>AI stands for Artificial Intelligence, and it refers to the ability of machines to perform tasks that would normally require human intelligence, such as recognizing speech, understanding natural language, and making decisions.</p>
<h2>Applications of AI</h2>
<ul>
<li>Speech recognition</li>
<li>Image recognition</li>
<li>Autonomous vehicles</li>
<li>Natural Language Processing (NLP)</li>
</ul>
<p>There are many other applications of AI, and this website will explore them in more detail.</p>
</body>
</html>
This website is dedicated to providing information about Artificial Intelligence and its various applications.
AI stands for Artificial Intelligence, and it refers to the ability of machines to perform tasks that would normally require human intelligence, such as recognizing speech, understanding natural language, and making decisions.
There are many other applications of AI, and this website will explore them in more detail.
<!DOCTYPE html>
<html>
<head>
<title>AI Website</title>
<style>
/* Add CSS styling for the website */
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1, h2 {
text-align: center;
color: #333;
}
p {
font-size: 1.2em;
line-height: 1.5em;
color: #555;
margin: 0.5em 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
font-size: 1.1em;
margin: 0.5em 0;
padding: 0.2em 1em;
background-color: #ddd;
border-radius: 5px;
}
/* Add hover effect for the list items */
li:hover {
background-color: #ccc;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Welcome to the AI Website</h1>
<p>This website is dedicated to providing information about Artificial Intelligence and its various applications.</p>
<h2>What is AI?</h2>
<p>AI stands for Artificial Intelligence, and it refers to the ability of machines to perform tasks that would normally require human intelligence, such as recognizing speech, understanding natural language, and making decisions.</p>
<h2>Applications of AI</h2>
<ul>
<li>Speech recognition</li>
<li>Image recognition</li>
<li>Autonomous vehicles</li>
<li>Natural Language Processing (NLP)</li>
</ul>
<p>There are many other applications of AI, and this website will explore them in more detail.</p>
<script>
var listItems = document.querySelectorAll('li');
for (var i = 0; i < listItems.length; i++) {
listItems[i].addEventListener('click', function() {
alert('You clicked on ' + this.textContent);
});
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>AI Website</title>
<style>
/* Add new colors to the website */
:root {
--main-color: #2c3e50;
--secondary-color: #9b59b6;
--tertiary-color: #f1c40f;
}
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1, h2 {
text-align: center;
color: var(--main-color);
}
p {
font-size: 1.2em;
line-height: 1.5em;
color: #555;
margin: 0.5em 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
font-size: 1.1em;
margin: 0.5em 0;
padding: 0.2em 1em;
background-color: var(--secondary-color);
border-radius: 5px;
color:white;
}
/* Add hover effect for the list items */
li:hover {
background-color: var(--tertiary-color);
cursor: pointer;
}
/* Add a class to the first item */
li:first-of-type{
background-color: var(--main-color);
}
</style>
</head>
<body>
<h1>Welcome to the AI Website</h1>
<p>This website is dedicated to providing information about Artificial Intelligence and its various applications.</p>
<h2>What is AI?</h2>
<p>AI stands for Artificial Intelligence, and it refers to the ability of machines to perform tasks that would normally require human intelligence, such as recognizing speech, understanding natural language, and making decisions.</p>
<h2>Applications of AI</h2>
<ul>
<li>Speech recognition</li>
<li>Image recognition</li>
<li>Autonomous vehicles</li>
<li>Natural Language Processing (NLP)</li>
</ul>
<p>There are many other applications of AI, and this website will explore them in more detail.</p>
<script>
var listItems = document.querySelectorAll('li');
for (var i = 0; i < listItems.length; i++) {
listItems[i].addEventListener('click', function() {
alert('You clicked on ' + this.textContent);
});
}
</script>
</body>
</html>