commit 6605f4d452f39a8803a1a4bc0048311fd44adb36
Author: root <root@hub.scroll.pub> Date: 2025-01-01 22:00:52 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..cc7ea20 --- /dev/null +++ b/body.html @@ -0,0 +1,23 @@ +<header> + <h1>Top 10 Funny Jokes</h1> + <p>Laugh your way through these hilarious jokes!</p> +</header> + +<main> + <ol> + <li>Why don’t skeletons fight each other? They don’t have the guts.</li> + <li>Why did the scarecrow win an award? Because he was outstanding in his field!</li> + <li>What do you call fake spaghetti? An impasta!</li> + <li>Why don’t eggs tell jokes? They’d crack each other up.</li> + <li>What do you call cheese that isn’t yours? Nacho cheese!</li> + <li>Why did the bicycle fall over? Because it was two-tired!</li> + <li>What do you call a bear with no teeth? A gummy bear!</li> + <li>Why can’t you give Elsa a balloon? Because she will let it go!</li> + <li>What do you get when you cross a snowman and a vampire? Frostbite!</li> + <li>Why did the math book look sad? Because it had too many problems.</li> + </ol> +</main> + +<footer> + <p>Made with laughter and joy.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..629203b --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://funnyjokes.scroll.pub +metaTags +editButton /edit.html +title Top 10 Funny Jokes +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..80af182 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "dbb8a177-45a3-4f4b-940a-fcfd21a29111", + "object": "chat.completion", + "created": 1735768841, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nfunnyjokes.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://funnyjokes.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Top 10 Funny Jokes\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Top 10 Funny Jokes</h1>\n <p>Laugh your way through these hilarious jokes!</p>\n</header>\n\n<main>\n <ol>\n <li>Why don’t skeletons fight each other? They don’t have the guts.</li>\n <li>Why did the scarecrow win an award? Because he was outstanding in his field!</li>\n <li>What do you call fake spaghetti? An impasta!</li>\n <li>Why don’t eggs tell jokes? They’d crack each other up.</li>\n <li>What do you call cheese that isn’t yours? Nacho cheese!</li>\n <li>Why did the bicycle fall over? Because it was two-tired!</li>\n <li>What do you call a bear with no teeth? A gummy bear!</li>\n <li>Why can’t you give Elsa a balloon? Because she will let it go!</li>\n <li>What do you get when you cross a snowman and a vampire? Frostbite!</li>\n <li>Why did the math book look sad? Because it had too many problems.</li>\n </ol>\n</main>\n\n<footer>\n <p>Made with laughter and joy.</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);\n color: #333;\n margin: 0;\n padding: 0;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n min-height: 100vh;\n}\n\nheader {\n text-align: center;\n padding: 2rem;\n background: rgba(255, 255, 255, 0.8);\n border-radius: 10px;\n margin: 1rem;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nh1 {\n font-size: 2.5rem;\n color: #ff6f61;\n}\n\np {\n font-size: 1.2rem;\n color: #555;\n}\n\nmain {\n background: rgba(255, 255, 255, 0.8);\n border-radius: 10px;\n padding: 2rem;\n margin: 1rem;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n max-width: 600px;\n width: 100%;\n}\n\nol {\n list-style-type: decimal;\n padding-left: 1.5rem;\n}\n\nli {\n font-size: 1.1rem;\n margin: 1rem 0;\n line-height: 1.6;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n font-size: 0.9rem;\n color: #777;\n}\n\n@media (max-width: 600px) {\n h1 {\n font-size: 2rem;\n }\n\n p {\n font-size: 1rem;\n }\n\n li {\n font-size: 1rem;\n }\n}\n---script.js---\n// No JavaScript needed for this simple page\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 239, + "completion_tokens": 793, + "total_tokens": 1032, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 239 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..bb00c32 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# funnyjokes.scroll.pub +Website generated by DeepSeek from prompt: top 10 funny jokes \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..73aa4ed --- /dev/null +++ b/script.js @@ -0,0 +1 @@ +// No JavaScript needed for this simple page \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..ccce783 --- /dev/null +++ b/style.css @@ -0,0 +1,73 @@ +body { + font-family: 'Arial', sans-serif; + background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); + color: #333; + margin: 0; + padding: 0; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + min-height: 100vh; +} + +header { + text-align: center; + padding: 2rem; + background: rgba(255, 255, 255, 0.8); + border-radius: 10px; + margin: 1rem; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +h1 { + font-size: 2.5rem; + color: #ff6f61; +} + +p { + font-size: 1.2rem; + color: #555; +} + +main { + background: rgba(255, 255, 255, 0.8); + border-radius: 10px; + padding: 2rem; + margin: 1rem; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + max-width: 600px; + width: 100%; +} + +ol { + list-style-type: decimal; + padding-left: 1.5rem; +} + +li { + font-size: 1.1rem; + margin: 1rem 0; + line-height: 1.6; +} + +footer { + text-align: center; + padding: 1rem; + font-size: 0.9rem; + color: #777; +} + +@media (max-width: 600px) { + h1 { + font-size: 2rem; + } + + p { + font-size: 1rem; + } + + li { + font-size: 1rem; + } +} \ No newline at end of file