commit c7755dc1cb9a20a38079b1589164ff2e9d92349a
Author: root <root@hub.scroll.pub> Date: 2024-12-29 04:29:10 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..a9221d0 --- /dev/null +++ b/body.html @@ -0,0 +1,52 @@ +<header> + <h1>Amor Virtual</h1> + <p>Expert advice for navigating online relationships with a Spanish guy who has strong sexual desires.</p> +</header> + +<main> + <section id="advice"> + <h2>Relationship Advice</h2> + <article> + <h3>Understanding Cultural Differences</h3> + <p>Learn how cultural nuances can impact your relationship and how to navigate them effectively.</p> + </article> + <article> + <h3>Setting Boundaries</h3> + <p>Discover the importance of setting clear boundaries and how to communicate them respectfully.</p> + </article> + <article> + <h3>Managing Sexual Desires</h3> + <p>Find strategies to manage and balance sexual desires in a healthy and consensual way.</p> + </article> + </section> + + <section id="tools"> + <h2>Numerical Tools</h2> + <div class="tool"> + <h3>Compatibility Calculator</h3> + <p>Enter your details to see how compatible you are with your Spanish partner.</p> + <form id="compatibilityForm"> + <label for="name">Your Name:</label> + <input type="text" id="name" name="name" required> + <label for="partnerName">Partner's Name:</label> + <input type="text" id="partnerName" name="partnerName" required> + <button type="submit">Calculate</button> + </form> + <p id="compatibilityResult"></p> + </div> + <div class="tool"> + <h3>Desire Level Meter</h3> + <p>Measure the level of sexual desire in your relationship.</p> + <form id="desireForm"> + <label for="desireLevel">Desire Level (1-10):</label> + <input type="number" id="desireLevel" name="desireLevel" min="1" max="10" required> + <button type="submit">Measure</button> + </form> + <p id="desireResult"></p> + </div> + </section> +</main> + +<footer> + <p>Contact us for personalized advice and support.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..bc1c007 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://amorvirtual.scroll.pub +metaTags +editButton /edit.html +title Amor Virtual - Advice for Online Relationships with a Spanish Guy +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..2891786 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "c57b5b2b-d057-4261-ae58-e040d188e358", + "object": "chat.completion", + "created": 1735446531, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\namorvirtual.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://amorvirtual.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Amor Virtual - Advice for Online Relationships with a Spanish Guy\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Amor Virtual</h1>\n <p>Expert advice for navigating online relationships with a Spanish guy who has strong sexual desires.</p>\n</header>\n\n<main>\n <section id=\"advice\">\n <h2>Relationship Advice</h2>\n <article>\n <h3>Understanding Cultural Differences</h3>\n <p>Learn how cultural nuances can impact your relationship and how to navigate them effectively.</p>\n </article>\n <article>\n <h3>Setting Boundaries</h3>\n <p>Discover the importance of setting clear boundaries and how to communicate them respectfully.</p>\n </article>\n <article>\n <h3>Managing Sexual Desires</h3>\n <p>Find strategies to manage and balance sexual desires in a healthy and consensual way.</p>\n </article>\n </section>\n\n <section id=\"tools\">\n <h2>Numerical Tools</h2>\n <div class=\"tool\">\n <h3>Compatibility Calculator</h3>\n <p>Enter your details to see how compatible you are with your Spanish partner.</p>\n <form id=\"compatibilityForm\">\n <label for=\"name\">Your Name:</label>\n <input type=\"text\" id=\"name\" name=\"name\" required>\n <label for=\"partnerName\">Partner's Name:</label>\n <input type=\"text\" id=\"partnerName\" name=\"partnerName\" required>\n <button type=\"submit\">Calculate</button>\n </form>\n <p id=\"compatibilityResult\"></p>\n </div>\n <div class=\"tool\">\n <h3>Desire Level Meter</h3>\n <p>Measure the level of sexual desire in your relationship.</p>\n <form id=\"desireForm\">\n <label for=\"desireLevel\">Desire Level (1-10):</label>\n <input type=\"number\" id=\"desireLevel\" name=\"desireLevel\" min=\"1\" max=\"10\" required>\n <button type=\"submit\">Measure</button>\n </form>\n <p id=\"desireResult\"></p>\n </div>\n </section>\n</main>\n\n<footer>\n <p>Contact us for personalized advice and support.</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background-color: #f4f4f4;\n color: #333;\n}\n\nheader {\n background: #e74c3c;\n color: #fff;\n padding: 20px 0;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5em;\n}\n\nheader p {\n margin: 5px 0 0;\n font-size: 1.2em;\n}\n\nmain {\n padding: 20px;\n}\n\nsection {\n margin-bottom: 40px;\n}\n\nh2 {\n color: #e74c3c;\n font-size: 2em;\n margin-bottom: 20px;\n}\n\narticle {\n background: #fff;\n padding: 15px;\n margin-bottom: 20px;\n border-radius: 5px;\n box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n}\n\narticle h3 {\n color: #e74c3c;\n font-size: 1.5em;\n margin-bottom: 10px;\n}\n\n.tool {\n background: #fff;\n padding: 15px;\n margin-bottom: 20px;\n border-radius: 5px;\n box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n}\n\n.tool h3 {\n color: #e74c3c;\n font-size: 1.5em;\n margin-bottom: 10px;\n}\n\nform {\n display: flex;\n flex-direction: column;\n}\n\nlabel {\n margin-bottom: 5px;\n font-weight: bold;\n}\n\ninput {\n padding: 10px;\n margin-bottom: 10px;\n border: 1px solid #ccc;\n border-radius: 5px;\n}\n\nbutton {\n padding: 10px;\n background: #e74c3c;\n color: #fff;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n}\n\nbutton:hover {\n background: #c0392b;\n}\n\nfooter {\n background: #333;\n color: #fff;\n text-align: center;\n padding: 10px 0;\n margin-top: 40px;\n}\n\n@media (max-width: 768px) {\n header h1 {\n font-size: 2em;\n }\n\n header p {\n font-size: 1em;\n }\n\n h2 {\n font-size: 1.5em;\n }\n\n article h3 {\n font-size: 1.2em;\n }\n\n .tool h3 {\n font-size: 1.2em;\n }\n}\n---script.js---\ndocument.getElementById('compatibilityForm').addEventListener('submit', function(event) {\n event.preventDefault();\n const name = document.getElementById('name').value;\n const partnerName = document.getElementById('partnerName').value;\n const compatibility = Math.floor(Math.random() * 100) + 1;\n document.getElementById('compatibilityResult').textContent = `Compatibility between ${name} and ${partnerName}: ${compatibility}%`;\n});\n\ndocument.getElementById('desireForm').addEventListener('submit', function(event) {\n event.preventDefault();\n const desireLevel = parseInt(document.getElementById('desireLevel').value);\n let result;\n if (desireLevel <= 3) {\n result = 'Low desire level. Consider discussing your needs openly.';\n } else if (desireLevel <= 7) {\n result = 'Moderate desire level. Keep communicating to maintain balance.';\n } else {\n result = 'High desire level. Ensure mutual consent and comfort.';\n }\n document.getElementById('desireResult').textContent = result;\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 264, + "completion_tokens": 1420, + "total_tokens": 1684, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 264 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..11f7eed --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# amorvirtual.scroll.pub +Website generated by DeepSeek from prompt: I want a website gives me advices about online relationship with a Spanish guy who has strong sexual desires. It should have some numerical tools. Be creative. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..00bcac2 --- /dev/null +++ b/script.js @@ -0,0 +1,21 @@ +document.getElementById('compatibilityForm').addEventListener('submit', function(event) { + event.preventDefault(); + const name = document.getElementById('name').value; + const partnerName = document.getElementById('partnerName').value; + const compatibility = Math.floor(Math.random() * 100) + 1; + document.getElementById('compatibilityResult').textContent = `Compatibility between ${name} and ${partnerName}: ${compatibility}%`; +}); + +document.getElementById('desireForm').addEventListener('submit', function(event) { + event.preventDefault(); + const desireLevel = parseInt(document.getElementById('desireLevel').value); + let result; + if (desireLevel <= 3) { + result = 'Low desire level. Consider discussing your needs openly.'; + } else if (desireLevel <= 7) { + result = 'Moderate desire level. Keep communicating to maintain balance.'; + } else { + result = 'High desire level. Ensure mutual consent and comfort.'; + } + document.getElementById('desireResult').textContent = result; +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..2c62331 --- /dev/null +++ b/style.css @@ -0,0 +1,127 @@ +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + background-color: #f4f4f4; + color: #333; +} + +header { + background: #e74c3c; + color: #fff; + padding: 20px 0; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5em; +} + +header p { + margin: 5px 0 0; + font-size: 1.2em; +} + +main { + padding: 20px; +} + +section { + margin-bottom: 40px; +} + +h2 { + color: #e74c3c; + font-size: 2em; + margin-bottom: 20px; +} + +article { + background: #fff; + padding: 15px; + margin-bottom: 20px; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +article h3 { + color: #e74c3c; + font-size: 1.5em; + margin-bottom: 10px; +} + +.tool { + background: #fff; + padding: 15px; + margin-bottom: 20px; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +.tool h3 { + color: #e74c3c; + font-size: 1.5em; + margin-bottom: 10px; +} + +form { + display: flex; + flex-direction: column; +} + +label { + margin-bottom: 5px; + font-weight: bold; +} + +input { + padding: 10px; + margin-bottom: 10px; + border: 1px solid #ccc; + border-radius: 5px; +} + +button { + padding: 10px; + background: #e74c3c; + color: #fff; + border: none; + border-radius: 5px; + cursor: pointer; +} + +button:hover { + background: #c0392b; +} + +footer { + background: #333; + color: #fff; + text-align: center; + padding: 10px 0; + margin-top: 40px; +} + +@media (max-width: 768px) { + header h1 { + font-size: 2em; + } + + header p { + font-size: 1em; + } + + h2 { + font-size: 1.5em; + } + + article h3 { + font-size: 1.2em; + } + + .tool h3 { + font-size: 1.2em; + } +} \ No newline at end of file