commit c5e80d57ad5c05378438615a888f820697cee898
Author: root <root@hub.scroll.pub>
Date: 2024-12-30 07:35:52 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..f8efac3
--- /dev/null
+++ b/body.html
@@ -0,0 +1,45 @@
+<header>
+ <h1>Welcome to Eggy Party!</h1>
+ <p>Join the most colorful and exciting game ever created!</p>
+</header>
+
+<main>
+ <section id="about">
+ <h2>About Eggy Party</h2>
+ <p>Eggy Party is a vibrant, multiplayer game where you can collect eggs, customize your character, and compete in fun challenges. Dive into a world of color and excitement!</p>
+ </section>
+
+ <section id="features">
+ <h2>Features</h2>
+ <ul>
+ <li>Customizable Characters</li>
+ <li>Exciting Challenges</li>
+ <li>Multiplayer Mode</li>
+ <li>Colorful Graphics</li>
+ </ul>
+ </section>
+
+ <section id="screenshots">
+ <h2>Screenshots</h2>
+ <div class="gallery">
+ <img src="screenshot1.jpg" alt="Eggy Party Screenshot 1">
+ <img src="screenshot2.jpg" alt="Eggy Party Screenshot 2">
+ <img src="screenshot3.jpg" alt="Eggy Party Screenshot 3">
+ </div>
+ </section>
+
+ <section id="join">
+ <h2>Join the Party!</h2>
+ <p>Ready to join the fun? Sign up now and start your Eggy Party adventure!</p>
+ <button onclick="signUp()">Sign Up</button>
+ </section>
+</main>
+
+<footer>
+ <p>Connect with us on social media:</p>
+ <div class="social-links">
+ <a href="#">Facebook</a>
+ <a href="#">Twitter</a>
+ <a href="#">Instagram</a>
+ </div>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..bf40248
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://eggyfun.scroll.pub
+metaTags
+editButton /edit.html
+title Eggy Party - The Ultimate Fun Game
+style.css
+body.html
+script.js
\ No newline at end of file
diff --git a/prompt.json b/prompt.json
new file mode 100644
index 0000000..9690fa0
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "e1a2bc06-8353-4928-a502-374e3856200b",
+ "object": "chat.completion",
+ "created": 1735544136,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\neggyfun.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://eggyfun.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Eggy Party - The Ultimate Fun Game\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Welcome to Eggy Party!</h1>\n <p>Join the most colorful and exciting game ever created!</p>\n</header>\n\n<main>\n <section id=\"about\">\n <h2>About Eggy Party</h2>\n <p>Eggy Party is a vibrant, multiplayer game where you can collect eggs, customize your character, and compete in fun challenges. Dive into a world of color and excitement!</p>\n </section>\n\n <section id=\"features\">\n <h2>Features</h2>\n <ul>\n <li>Customizable Characters</li>\n <li>Exciting Challenges</li>\n <li>Multiplayer Mode</li>\n <li>Colorful Graphics</li>\n </ul>\n </section>\n\n <section id=\"screenshots\">\n <h2>Screenshots</h2>\n <div class=\"gallery\">\n <img src=\"screenshot1.jpg\" alt=\"Eggy Party Screenshot 1\">\n <img src=\"screenshot2.jpg\" alt=\"Eggy Party Screenshot 2\">\n <img src=\"screenshot3.jpg\" alt=\"Eggy Party Screenshot 3\">\n </div>\n </section>\n\n <section id=\"join\">\n <h2>Join the Party!</h2>\n <p>Ready to join the fun? Sign up now and start your Eggy Party adventure!</p>\n <button onclick=\"signUp()\">Sign Up</button>\n </section>\n</main>\n\n<footer>\n <p>Connect with us on social media:</p>\n <div class=\"social-links\">\n <a href=\"#\">Facebook</a>\n <a href=\"#\">Twitter</a>\n <a href=\"#\">Instagram</a>\n </div>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background: linear-gradient(135deg, #ff9a9e, #fad0c4);\n color: #333;\n}\n\nheader {\n text-align: center;\n padding: 50px 20px;\n background: rgba(255, 255, 255, 0.8);\n margin-bottom: 20px;\n}\n\nheader h1 {\n font-size: 3rem;\n color: #ff6f61;\n}\n\nheader p {\n font-size: 1.2rem;\n color: #555;\n}\n\nmain {\n padding: 20px;\n}\n\nsection {\n margin-bottom: 40px;\n}\n\nh2 {\n font-size: 2rem;\n color: #ff6f61;\n margin-bottom: 20px;\n}\n\nul {\n list-style-type: none;\n padding: 0;\n}\n\nul li {\n background: rgba(255, 255, 255, 0.8);\n margin: 10px 0;\n padding: 10px;\n border-radius: 5px;\n}\n\n.gallery {\n display: flex;\n justify-content: space-around;\n flex-wrap: wrap;\n}\n\n.gallery img {\n width: 30%;\n border-radius: 10px;\n margin-bottom: 20px;\n}\n\nbutton {\n background: #ff6f61;\n color: white;\n border: none;\n padding: 10px 20px;\n font-size: 1rem;\n border-radius: 5px;\n cursor: pointer;\n}\n\nbutton:hover {\n background: #ff3b2f;\n}\n\nfooter {\n text-align: center;\n padding: 20px;\n background: rgba(255, 255, 255, 0.8);\n margin-top: 20px;\n}\n\n.social-links a {\n margin: 0 10px;\n color: #ff6f61;\n text-decoration: none;\n}\n\n.social-links a:hover {\n text-decoration: underline;\n}\n\n@media (max-width: 768px) {\n .gallery img {\n width: 45%;\n }\n}\n\n@media (max-width: 480px) {\n .gallery img {\n width: 100%;\n }\n}\n---script.js---\nfunction signUp() {\n alert(\"Thank you for signing up! Get ready to join the Eggy Party!\");\n}\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 252,
+ "completion_tokens": 998,
+ "total_tokens": 1250,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 252
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..65524f6
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# eggyfun.scroll.pub
+Website generated by DeepSeek from prompt: create a websit which is about the game of eggy party, and be colorful.
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..708c77b
--- /dev/null
+++ b/script.js
@@ -0,0 +1,3 @@
+function signUp() {
+ alert("Thank you for signing up! Get ready to join the Eggy Party!");
+}
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..91edde4
--- /dev/null
+++ b/style.css
@@ -0,0 +1,105 @@
+body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #ff9a9e, #fad0c4);
+ color: #333;
+}
+
+header {
+ text-align: center;
+ padding: 50px 20px;
+ background: rgba(255, 255, 255, 0.8);
+ margin-bottom: 20px;
+}
+
+header h1 {
+ font-size: 3rem;
+ color: #ff6f61;
+}
+
+header p {
+ font-size: 1.2rem;
+ color: #555;
+}
+
+main {
+ padding: 20px;
+}
+
+section {
+ margin-bottom: 40px;
+}
+
+h2 {
+ font-size: 2rem;
+ color: #ff6f61;
+ margin-bottom: 20px;
+}
+
+ul {
+ list-style-type: none;
+ padding: 0;
+}
+
+ul li {
+ background: rgba(255, 255, 255, 0.8);
+ margin: 10px 0;
+ padding: 10px;
+ border-radius: 5px;
+}
+
+.gallery {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+}
+
+.gallery img {
+ width: 30%;
+ border-radius: 10px;
+ margin-bottom: 20px;
+}
+
+button {
+ background: #ff6f61;
+ color: white;
+ border: none;
+ padding: 10px 20px;
+ font-size: 1rem;
+ border-radius: 5px;
+ cursor: pointer;
+}
+
+button:hover {
+ background: #ff3b2f;
+}
+
+footer {
+ text-align: center;
+ padding: 20px;
+ background: rgba(255, 255, 255, 0.8);
+ margin-top: 20px;
+}
+
+.social-links a {
+ margin: 0 10px;
+ color: #ff6f61;
+ text-decoration: none;
+}
+
+.social-links a:hover {
+ text-decoration: underline;
+}
+
+@media (max-width: 768px) {
+ .gallery img {
+ width: 45%;
+ }
+}
+
+@media (max-width: 480px) {
+ .gallery img {
+ width: 100%;
+ }
+}
\ No newline at end of file