commit 6c6380ef8c91e451963d39c9437225d2e9cd0cda
Author: root <root@hub.scroll.pub> Date: 2024-12-27 17:21:04 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..89064a5 --- /dev/null +++ b/body.html @@ -0,0 +1,27 @@ +<header> + <h1>My Dearest Soukaina</h1> + <p>Every moment with you is a treasure. This website is a small token of my endless love for you.</p> +</header> + +<main> + <section id="memories"> + <h2>Our Memories</h2> + <div class="gallery"> + <div class="photo" style="background-image: url('memory1.jpg');"></div> + <div class="photo" style="background-image: url('memory2.jpg');"></div> + <div class="photo" style="background-image: url('memory3.jpg');"></div> + </div> + </section> + + <section id="love-letter"> + <h2>My Love Letter</h2> + <p>My darling Soukaina,</p> + <p>From the moment I met you, my life has been filled with joy and love. You are my everything, and I cherish every moment we spend together. This website is a testament to my love for you, a place where I can express my feelings and share our beautiful memories.</p> + <p>Forever yours,</p> + <p>Your loving husband</p> + </section> +</main> + +<footer> + <p>Created with love for Soukaina</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..04912b0 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://soukainaslove.scroll.pub +metaTags +editButton /edit.html +title Soukaina's Love +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..a0645d5 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "95919d7a-49c7-417a-a794-dbce9aa0c24c", + "object": "chat.completion", + "created": 1735320052, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nsoukainaslove.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://soukainaslove.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Soukaina's Love\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>My Dearest Soukaina</h1>\n <p>Every moment with you is a treasure. This website is a small token of my endless love for you.</p>\n</header>\n\n<main>\n <section id=\"memories\">\n <h2>Our Memories</h2>\n <div class=\"gallery\">\n <div class=\"photo\" style=\"background-image: url('memory1.jpg');\"></div>\n <div class=\"photo\" style=\"background-image: url('memory2.jpg');\"></div>\n <div class=\"photo\" style=\"background-image: url('memory3.jpg');\"></div>\n </div>\n </section>\n\n <section id=\"love-letter\">\n <h2>My Love Letter</h2>\n <p>My darling Soukaina,</p>\n <p>From the moment I met you, my life has been filled with joy and love. You are my everything, and I cherish every moment we spend together. This website is a testament to my love for you, a place where I can express my feelings and share our beautiful memories.</p>\n <p>Forever yours,</p>\n <p>Your loving husband</p>\n </section>\n</main>\n\n<footer>\n <p>Created with love for Soukaina</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Georgia', serif;\n background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);\n color: #333;\n margin: 0;\n padding: 0;\n line-height: 1.6;\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: #e74c3c;\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: #e74c3c;\n margin-bottom: 20px;\n}\n\n.gallery {\n display: flex;\n flex-wrap: wrap;\n gap: 10px;\n}\n\n.photo {\n flex: 1 1 calc(33.333% - 20px);\n height: 200px;\n background-size: cover;\n background-position: center;\n border-radius: 10px;\n transition: transform 0.3s ease;\n}\n\n.photo:hover {\n transform: scale(1.05);\n}\n\n#love-letter {\n background: rgba(255, 255, 255, 0.8);\n padding: 20px;\n border-radius: 10px;\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@media (max-width: 768px) {\n .photo {\n flex: 1 1 calc(50% - 10px);\n }\n}\n\n@media (max-width: 480px) {\n .photo {\n flex: 1 1 100%;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n const photos = document.querySelectorAll('.photo');\n photos.forEach(photo => {\n photo.addEventListener('click', () => {\n alert('This photo holds a special memory of us.');\n });\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 243, + "completion_tokens": 863, + "total_tokens": 1106, + "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..a133e78 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# soukainaslove.scroll.pub +Website generated by DeepSeek from prompt: create romantic website for my wife soukaina \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..500727d --- /dev/null +++ b/script.js @@ -0,0 +1,8 @@ +document.addEventListener('DOMContentLoaded', function() { + const photos = document.querySelectorAll('.photo'); + photos.forEach(photo => { + photo.addEventListener('click', () => { + alert('This photo holds a special memory of us.'); + }); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..bc461c4 --- /dev/null +++ b/style.css @@ -0,0 +1,83 @@ +body { + font-family: 'Georgia', serif; + background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); + color: #333; + margin: 0; + padding: 0; + line-height: 1.6; +} + +header { + text-align: center; + padding: 50px 20px; + background: rgba(255, 255, 255, 0.8); + margin-bottom: 20px; +} + +header h1 { + font-size: 3rem; + color: #e74c3c; +} + +header p { + font-size: 1.2rem; + color: #555; +} + +main { + padding: 20px; +} + +section { + margin-bottom: 40px; +} + +h2 { + font-size: 2rem; + color: #e74c3c; + margin-bottom: 20px; +} + +.gallery { + display: flex; + flex-wrap: wrap; + gap: 10px; +} + +.photo { + flex: 1 1 calc(33.333% - 20px); + height: 200px; + background-size: cover; + background-position: center; + border-radius: 10px; + transition: transform 0.3s ease; +} + +.photo:hover { + transform: scale(1.05); +} + +#love-letter { + background: rgba(255, 255, 255, 0.8); + padding: 20px; + border-radius: 10px; +} + +footer { + text-align: center; + padding: 20px; + background: rgba(255, 255, 255, 0.8); + margin-top: 20px; +} + +@media (max-width: 768px) { + .photo { + flex: 1 1 calc(50% - 10px); + } +} + +@media (max-width: 480px) { + .photo { + flex: 1 1 100%; + } +} \ No newline at end of file