From aedbaaf1637e388fba552d45cb0ac5a814e16a37 Mon Sep 17 00:00:00 2001 From: "Martin Rattensberger (aider)" Date: Thu, 10 Oct 2024 15:12:03 +0200 Subject: [PATCH] feat: Create simple HTML5 page with separate CSS for AI consultants --- index.html | 31 +++++++++++++++++++++++++++++++ styles.css | 24 ++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 styles.css diff --git a/index.html b/index.html index e69de29..21a6e19 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,31 @@ + + + + + + AI Consultants + + + +
+

AI Consultants

+
+
+
+

Consultant 1

+

Experte für maschinelles Lernen und Datenanalyse.

+
+
+

Consultant 2

+

Spezialist für natürliche Sprachverarbeitung und KI-Strategien.

+
+
+

Consultant 3

+

Berater für KI-Implementierung und ethische KI-Praktiken.

+
+
+ + + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..836ad70 --- /dev/null +++ b/styles.css @@ -0,0 +1,24 @@ +body { + font-family: Arial, sans-serif; + background-color: #fff; + color: #000; + margin: 0; + padding: 0; +} + +header, footer { + background-color: #000; + color: #fff; + text-align: center; + padding: 1em 0; +} + +main { + padding: 2em; +} + +.consultant { + border: 1px solid #000; + margin: 1em 0; + padding: 1em; +}