commit a20d02fd02d921ca9b2f904db902d3f8ccb26509
Author: root <root@hub.scroll.pub> Date: 2024-12-28 04:44:39 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..347ad00 --- /dev/null +++ b/body.html @@ -0,0 +1,29 @@ +<header> + <h1>Joshua Omomia is Cool</h1> + <p>Discover why Joshua Omomia is the epitome of coolness.</p> +</header> +<main> + <section id="about"> + <h2>About Joshua</h2> + <p>Joshua Omomia is a visionary leader, a tech enthusiast, and a cool guy who inspires everyone around him.</p> + </section> + <section id="skills"> + <h2>Skills</h2> + <ul> + <li>Leadership</li> + <li>Innovation</li> + <li>Problem Solving</li> + <li>Team Collaboration</li> + </ul> + </section> + <section id="testimonials"> + <h2>Testimonials</h2> + <blockquote> + <p>"Joshua is the coolest person I know. His energy and positivity are contagious!"</p> + <footer>- A Happy Colleague</footer> + </blockquote> + </section> +</main> +<footer> + <p>Connect with Joshua and be part of the coolness.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..225c3b4 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://joshuacool.scroll.pub +metaTags +editButton /edit.html +title Joshua Omomia is Cool +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..cbf81eb --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "1482311f-52cf-43a4-b970-9fba8c05ec9c", + "object": "chat.completion", + "created": 1735361068, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\njoshuacool.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://joshuacool.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Joshua Omomia is Cool\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Joshua Omomia is Cool</h1>\n <p>Discover why Joshua Omomia is the epitome of coolness.</p>\n</header>\n<main>\n <section id=\"about\">\n <h2>About Joshua</h2>\n <p>Joshua Omomia is a visionary leader, a tech enthusiast, and a cool guy who inspires everyone around him.</p>\n </section>\n <section id=\"skills\">\n <h2>Skills</h2>\n <ul>\n <li>Leadership</li>\n <li>Innovation</li>\n <li>Problem Solving</li>\n <li>Team Collaboration</li>\n </ul>\n </section>\n <section id=\"testimonials\">\n <h2>Testimonials</h2>\n <blockquote>\n <p>\"Joshua is the coolest person I know. His energy and positivity are contagious!\"</p>\n <footer>- A Happy Colleague</footer>\n </blockquote>\n </section>\n</main>\n<footer>\n <p>Connect with Joshua and be part of the coolness.</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background: linear-gradient(135deg, #1e3c72, #2a5298);\n color: #fff;\n line-height: 1.6;\n}\n\nheader {\n text-align: center;\n padding: 50px 20px;\n background: rgba(0, 0, 0, 0.7);\n}\n\nheader h1 {\n font-size: 3rem;\n margin: 0;\n}\n\nheader p {\n font-size: 1.2rem;\n margin: 10px 0 0;\n}\n\nmain {\n padding: 20px;\n}\n\nsection {\n margin-bottom: 40px;\n}\n\nh2 {\n font-size: 2rem;\n margin-bottom: 20px;\n color: #ffcc00;\n}\n\nul {\n list-style-type: none;\n padding: 0;\n}\n\nul li {\n background: rgba(255, 255, 255, 0.1);\n margin: 10px 0;\n padding: 10px;\n border-radius: 5px;\n}\n\nblockquote {\n background: rgba(255, 255, 255, 0.1);\n padding: 20px;\n border-left: 5px solid #ffcc00;\n margin: 0;\n}\n\nblockquote p {\n font-style: italic;\n}\n\nblockquote footer {\n margin-top: 10px;\n font-weight: bold;\n}\n\nfooter {\n text-align: center;\n padding: 20px;\n background: rgba(0, 0, 0, 0.7);\n margin-top: 40px;\n}\n\n@media (max-width: 768px) {\n header h1 {\n font-size: 2rem;\n }\n\n header p {\n font-size: 1rem;\n }\n\n h2 {\n font-size: 1.5rem;\n }\n}\n---script.js---\n// Smooth scrolling for anchor links\ndocument.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function (e) {\n e.preventDefault();\n document.querySelector(this.getAttribute('href')).scrollIntoView({\n behavior: 'smooth'\n });\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 243, + "completion_tokens": 821, + "total_tokens": 1064, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 243 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..6c37874 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# joshuacool.scroll.pub +Website generated by DeepSeek from prompt: Create a website showing Joshua Omomia is cool \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..5716c79 --- /dev/null +++ b/script.js @@ -0,0 +1,9 @@ +// Smooth scrolling for anchor links +document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..a44a956 --- /dev/null +++ b/style.css @@ -0,0 +1,87 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background: linear-gradient(135deg, #1e3c72, #2a5298); + color: #fff; + line-height: 1.6; +} + +header { + text-align: center; + padding: 50px 20px; + background: rgba(0, 0, 0, 0.7); +} + +header h1 { + font-size: 3rem; + margin: 0; +} + +header p { + font-size: 1.2rem; + margin: 10px 0 0; +} + +main { + padding: 20px; +} + +section { + margin-bottom: 40px; +} + +h2 { + font-size: 2rem; + margin-bottom: 20px; + color: #ffcc00; +} + +ul { + list-style-type: none; + padding: 0; +} + +ul li { + background: rgba(255, 255, 255, 0.1); + margin: 10px 0; + padding: 10px; + border-radius: 5px; +} + +blockquote { + background: rgba(255, 255, 255, 0.1); + padding: 20px; + border-left: 5px solid #ffcc00; + margin: 0; +} + +blockquote p { + font-style: italic; +} + +blockquote footer { + margin-top: 10px; + font-weight: bold; +} + +footer { + text-align: center; + padding: 20px; + background: rgba(0, 0, 0, 0.7); + margin-top: 40px; +} + +@media (max-width: 768px) { + header h1 { + font-size: 2rem; + } + + header p { + font-size: 1rem; + } + + h2 { + font-size: 1.5rem; + } +} \ No newline at end of file