From bfcfe4e9ee6a6b6a51054c6dec9af53b6e0f748b Mon Sep 17 00:00:00 2001 From: LimePot Date: Fri, 23 Dec 2022 18:16:37 -0700 Subject: [PATCH] ChatGPT --- AI/index.html | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ AI/style.css | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100644 AI/index.html create mode 100644 AI/style.css diff --git a/AI/index.html b/AI/index.html new file mode 100644 index 0000000..af53461 --- /dev/null +++ b/AI/index.html @@ -0,0 +1,50 @@ + + + + + LimePot's Website + + + +
+

Welcome to LimePot's Website!

+ +
+
+
+

About

+

Hi, my name is LimePot and I am a developer and gamer. I enjoy creating websites, mods, and games in my free time.

+
+
+

Projects

+
    +
  • Minecraft Mod: SpaceMod
  • +
  • Website: limepot.xyz
  • +
  • Game: Galactic Adventures
  • +
+
+
+

Contact

+

You can contact me through email at limepot@gmail.com or by filling out the form below:

+
+
+
+
+
+
+
+ +
+
+
+ + + diff --git a/AI/style.css b/AI/style.css new file mode 100644 index 0000000..852a793 --- /dev/null +++ b/AI/style.css @@ -0,0 +1,35 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + } + + header { + background-color: #333; + color: #fff; + display: flex; + justify-content: space-between; + align-items: center; + padding: 20px; + } + + header h1 { + margin: 0; + } + + header nav ul { + list-style: none; + margin: 0; + padding: 0; + display: flex; + } + + header nav li { + margin-left: 20px; + } + + header nav a { + color: #fff; + text-decoration: none; + } +