We are a leading provider of online AI courses. Our mission is to make AI education accessible to everyone. We believe that everyone should have the opportunity to learn about the latest technologies and use them to transform their lives and the world around them.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/contact.html b/contact.html
new file mode 100755
index 0000000..3e20a5b
--- /dev/null
+++ b/contact.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+ Contact Us
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/courses.html b/courses.html
new file mode 100755
index 0000000..a21630a
--- /dev/null
+++ b/courses.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+ AI Courses
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/css/responsive.css b/css/responsive.css
new file mode 100755
index 0000000..41a0e66
--- /dev/null
+++ b/css/responsive.css
@@ -0,0 +1,56 @@
+@media screen and (max-width: 600px) {
+ body {
+ font-size: 18px;
+ }
+
+ .course-card {
+ width: 100%;
+ padding: 10px;
+ }
+
+ #courseContainer {
+ grid-template-columns: 1fr;
+ }
+
+ #contactForm, #purchaseButton {
+ width: 100%;
+ }
+}
+
+@media screen and (min-width: 601px) and (max-width: 1024px) {
+ body {
+ font-size: 20px;
+ }
+
+ .course-card {
+ width: 45%;
+ padding: 20px;
+ }
+
+ #courseContainer {
+ grid-template-columns: 1fr 1fr;
+ }
+
+ #contactForm, #purchaseButton {
+ width: 50%;
+ }
+}
+
+@media screen and (min-width: 1025px) {
+ body {
+ font-size: 22px;
+ }
+
+ .course-card {
+ width: 30%;
+ padding: 30px;
+ }
+
+ #courseContainer {
+ grid-template-columns: 1fr 1fr 1fr;
+ }
+
+ #contactForm, #purchaseButton {
+ width: 33.33%;
+ }
+}
\ No newline at end of file
diff --git a/css/style.css b/css/style.css
new file mode 100755
index 0000000..0a53750
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,61 @@
+body {
+ font-family: Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+ background: url('../img/background.jpg') no-repeat center center fixed;
+ background-size: cover;
+}
+
+.container {
+ width: 80%;
+ margin: auto;
+}
+
+.header {
+ padding: 20px;
+ text-align: center;
+ background-color: #f8f9fa;
+}
+
+.header img {
+ height: 80px;
+}
+
+.course-card {
+ border: 1px solid #ddd;
+ margin: 10px;
+ padding: 20px;
+ background-color: #fff;
+ box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
+ transition: 0.3s;
+}
+
+.course-card:hover {
+ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
+}
+
+.course-card img {
+ width: 100%;
+ height: auto;
+}
+
+.course-card button {
+ background-color: #4CAF50;
+ color: white;
+ padding: 10px 20px;
+ margin: 10px 0;
+ border: none;
+ cursor: pointer;
+ width: 100%;
+ opacity: 0.9;
+}
+
+.course-card button:hover {
+ opacity:1;
+}
+
+.footer {
+ padding: 20px;
+ text-align: center;
+ background-color: #f8f9fa;
+}
\ No newline at end of file
diff --git a/db/courses.sql b/db/courses.sql
new file mode 100755
index 0000000..730167e
--- /dev/null
+++ b/db/courses.sql
@@ -0,0 +1,13 @@
+CREATE TABLE Courses (
+ id INT AUTO_INCREMENT,
+ title VARCHAR(255) NOT NULL,
+ description TEXT,
+ image VARCHAR(255),
+ price DECIMAL(10, 2),
+ PRIMARY KEY(id)
+);
+
+INSERT INTO Courses (title, description, image, price) VALUES
+('AI Course 1', 'This is a description for AI Course 1', 'img/course1.jpg', 99.99),
+('AI Course 2', 'This is a description for AI Course 2', 'img/course2.jpg', 149.99),
+('AI Course 3', 'This is a description for AI Course 3', 'img/course3.jpg', 199.99);
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100755
index 0000000..89d1c23
--- /dev/null
+++ b/index.html
@@ -0,0 +1,34 @@
+
+
+
+
+
+ AI Courses
+
+
+
+
+
+
+
+
+
+
+
Welcome to AI Courses
+
Explore our wide range of AI courses and start learning today!