commit 51922568a26f3bebaa218c6c772e006ccc415871
Author: root <root@hub.scroll.pub> Date: 2024-12-28 12:29:40 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..3d1c00d --- /dev/null +++ b/body.html @@ -0,0 +1,54 @@ +<header> + <h1>ATI TEAS Practice</h1> + <p>Your ultimate resource for studying and practicing the ATI TEAS exam.</p> +</header> + +<main> + <section id="practice-tests"> + <h2>Practice Tests</h2> + <div class="test-grid"> + <div class="test-card" onclick="startTest('Reading')"> + <h3>Reading</h3> + <p>Improve your reading comprehension skills.</p> + </div> + <div class="test-card" onclick="startTest('Math')"> + <h3>Math</h3> + <p>Practice essential math concepts.</p> + </div> + <div class="test-card" onclick="startTest('Science')"> + <h3>Science</h3> + <p>Master scientific reasoning and knowledge.</p> + </div> + <div class="test-card" onclick="startTest('English')"> + <h3>English</h3> + <p>Enhance your grammar and language skills.</p> + </div> + </div> + </section> + + <section id="study-guides"> + <h2>Study Guides</h2> + <div class="guide-grid"> + <div class="guide-card"> + <h3>Reading Guide</h3> + <p>Comprehensive guide to reading comprehension.</p> + </div> + <div class="guide-card"> + <h3>Math Guide</h3> + <p>Detailed math concepts and practice problems.</p> + </div> + <div class="guide-card"> + <h3>Science Guide</h3> + <p>In-depth science topics and explanations.</p> + </div> + <div class="guide-card"> + <h3>English Guide</h3> + <p>Grammar rules and language usage tips.</p> + </div> + </div> + </section> +</main> + +<footer> + <p>Contact us for more information or support.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..28107b5 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://teaspractice.scroll.pub +metaTags +editButton /edit.html +title ATI TEAS Practice - Study and Prepare for Your Exam +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..67594db --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "6c6b5ecb-b842-470f-b596-296d8a89737f", + "object": "chat.completion", + "created": 1735388964, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nteaspractice.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://teaspractice.scroll.pub\nmetaTags\neditButton /edit.html\ntitle ATI TEAS Practice - Study and Prepare for Your Exam\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>ATI TEAS Practice</h1>\n <p>Your ultimate resource for studying and practicing the ATI TEAS exam.</p>\n</header>\n\n<main>\n <section id=\"practice-tests\">\n <h2>Practice Tests</h2>\n <div class=\"test-grid\">\n <div class=\"test-card\" onclick=\"startTest('Reading')\">\n <h3>Reading</h3>\n <p>Improve your reading comprehension skills.</p>\n </div>\n <div class=\"test-card\" onclick=\"startTest('Math')\">\n <h3>Math</h3>\n <p>Practice essential math concepts.</p>\n </div>\n <div class=\"test-card\" onclick=\"startTest('Science')\">\n <h3>Science</h3>\n <p>Master scientific reasoning and knowledge.</p>\n </div>\n <div class=\"test-card\" onclick=\"startTest('English')\">\n <h3>English</h3>\n <p>Enhance your grammar and language skills.</p>\n </div>\n </div>\n </section>\n\n <section id=\"study-guides\">\n <h2>Study Guides</h2>\n <div class=\"guide-grid\">\n <div class=\"guide-card\">\n <h3>Reading Guide</h3>\n <p>Comprehensive guide to reading comprehension.</p>\n </div>\n <div class=\"guide-card\">\n <h3>Math Guide</h3>\n <p>Detailed math concepts and practice problems.</p>\n </div>\n <div class=\"guide-card\">\n <h3>Science Guide</h3>\n <p>In-depth science topics and explanations.</p>\n </div>\n <div class=\"guide-card\">\n <h3>English Guide</h3>\n <p>Grammar rules and language usage tips.</p>\n </div>\n </div>\n </section>\n</main>\n\n<footer>\n <p>Contact us for more information or support.</p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background-color: #f4f4f9;\n color: #333;\n}\n\nheader {\n background-color: #4CAF50;\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nheader p {\n font-size: 1.2rem;\n}\n\nmain {\n padding: 2rem;\n}\n\nh2 {\n color: #4CAF50;\n margin-bottom: 1.5rem;\n}\n\n.test-grid, .guide-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1.5rem;\n}\n\n.test-card, .guide-card {\n background-color: white;\n padding: 1.5rem;\n border-radius: 8px;\n box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.test-card:hover, .guide-card:hover {\n transform: translateY(-5px);\n box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);\n}\n\n.test-card h3, .guide-card h3 {\n margin-top: 0;\n color: #4CAF50;\n}\n\n.test-card p, .guide-card p {\n font-size: 1rem;\n color: #666;\n}\n\nfooter {\n background-color: #333;\n color: white;\n text-align: center;\n padding: 1rem;\n margin-top: 2rem;\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 .test-grid, .guide-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\nfunction startTest(subject) {\n alert(`Starting ${subject} Practice Test`);\n // Add logic to start the test\n}\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 250, + "completion_tokens": 1016, + "total_tokens": 1266, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 250 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..6e12229 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# teaspractice.scroll.pub +Website generated by DeepSeek from prompt: I want a website for people to study and practice their ati teas exam. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..5a9c321 --- /dev/null +++ b/script.js @@ -0,0 +1,4 @@ +function startTest(subject) { + alert(`Starting ${subject} Practice Test`); + // Add logic to start the test +} \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..02117f4 --- /dev/null +++ b/style.css @@ -0,0 +1,83 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + background-color: #f4f4f9; + color: #333; +} + +header { + background-color: #4CAF50; + color: white; + padding: 2rem; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5rem; +} + +header p { + font-size: 1.2rem; +} + +main { + padding: 2rem; +} + +h2 { + color: #4CAF50; + margin-bottom: 1.5rem; +} + +.test-grid, .guide-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1.5rem; +} + +.test-card, .guide-card { + background-color: white; + padding: 1.5rem; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.test-card:hover, .guide-card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); +} + +.test-card h3, .guide-card h3 { + margin-top: 0; + color: #4CAF50; +} + +.test-card p, .guide-card p { + font-size: 1rem; + color: #666; +} + +footer { + background-color: #333; + color: white; + text-align: center; + padding: 1rem; + margin-top: 2rem; +} + +@media (max-width: 768px) { + header h1 { + font-size: 2rem; + } + + header p { + font-size: 1rem; + } + + .test-grid, .guide-grid { + grid-template-columns: 1fr; + } +} \ No newline at end of file