commit b3e77b5dfd136a236d8a80e126d849ed5bde82e0
Author: root <root@hub.scroll.pub>
Date: 2025-01-04 11:29:09 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..2963f2e
--- /dev/null
+++ b/body.html
@@ -0,0 +1,45 @@
+<header class="hero">
+ <h1>Best Career Paths for English Majors</h1>
+ <p>Discover the top career opportunities and how to prepare for them.</p>
+</header>
+
+<main>
+ <section class="intro">
+ <h2>Why Choose English?</h2>
+ <p>An English degree opens doors to a variety of fulfilling careers. Here are some of the best options:</p>
+ </section>
+
+ <section class="careers">
+ <article class="career-card">
+ <h3>Content Writer</h3>
+ <p>Create engaging content for websites, blogs, and marketing materials.</p>
+ </article>
+ <article class="career-card">
+ <h3>Editor</h3>
+ <p>Edit and proofread manuscripts, articles, and other written materials.</p>
+ </article>
+ <article class="career-card">
+ <h3>Teacher</h3>
+ <p>Educate students in English language and literature.</p>
+ </article>
+ <article class="career-card">
+ <h3>Public Relations Specialist</h3>
+ <p>Manage public image and communications for organizations.</p>
+ </article>
+ </section>
+
+ <section class="deployment">
+ <h2>How to Deploy Your Career</h2>
+ <p>Follow these steps to successfully launch your career:</p>
+ <ol>
+ <li>Build a strong portfolio showcasing your writing and editing skills.</li>
+ <li>Network with professionals in your desired field.</li>
+ <li>Gain relevant experience through internships or freelance work.</li>
+ <li>Continuously improve your skills through courses and certifications.</li>
+ </ol>
+ </section>
+</main>
+
+<footer>
+ <p>Explore your potential and take the first step towards a rewarding career.</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..7ab0313
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://engcareers.scroll.pub
+metaTags
+editButton /edit.html
+title Best Career Paths for English Majors
+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..4e8cab0
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "c16f7176-a55f-46e0-a550-fcab62c91bbf",
+ "object": "chat.completion",
+ "created": 1735990133,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nengcareers.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://engcareers.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Best Career Paths for English Majors\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <h1>Best Career Paths for English Majors</h1>\n <p>Discover the top career opportunities and how to prepare for them.</p>\n</header>\n\n<main>\n <section class=\"intro\">\n <h2>Why Choose English?</h2>\n <p>An English degree opens doors to a variety of fulfilling careers. Here are some of the best options:</p>\n </section>\n\n <section class=\"careers\">\n <article class=\"career-card\">\n <h3>Content Writer</h3>\n <p>Create engaging content for websites, blogs, and marketing materials.</p>\n </article>\n <article class=\"career-card\">\n <h3>Editor</h3>\n <p>Edit and proofread manuscripts, articles, and other written materials.</p>\n </article>\n <article class=\"career-card\">\n <h3>Teacher</h3>\n <p>Educate students in English language and literature.</p>\n </article>\n <article class=\"career-card\">\n <h3>Public Relations Specialist</h3>\n <p>Manage public image and communications for organizations.</p>\n </article>\n </section>\n\n <section class=\"deployment\">\n <h2>How to Deploy Your Career</h2>\n <p>Follow these steps to successfully launch your career:</p>\n <ol>\n <li>Build a strong portfolio showcasing your writing and editing skills.</li>\n <li>Network with professionals in your desired field.</li>\n <li>Gain relevant experience through internships or freelance work.</li>\n <li>Continuously improve your skills through courses and certifications.</li>\n </ol>\n </section>\n</main>\n\n<footer>\n <p>Explore your potential and take the first step towards a rewarding career.</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #333;\n --background-color: #f9f9f9;\n --text-color: #333;\n --card-background: #fff;\n --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background-color: var(--background-color);\n color: var(--text-color);\n}\n\n.hero {\n background: var(--primary-color);\n color: #fff;\n padding: 2rem;\n text-align: center;\n}\n\n.hero h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\n.hero p {\n font-size: 1.2rem;\n}\n\nmain {\n padding: 2rem;\n}\n\n.intro, .deployment {\n margin-bottom: 2rem;\n}\n\n.careers {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1.5rem;\n}\n\n.career-card {\n background: var(--card-background);\n padding: 1.5rem;\n border-radius: 8px;\n box-shadow: var(--card-shadow);\n transition: transform 0.3s ease;\n}\n\n.career-card:hover {\n transform: translateY(-5px);\n}\n\n.career-card h3 {\n margin-top: 0;\n color: var(--primary-color);\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--secondary-color);\n color: #fff;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n\n .hero p {\n font-size: 1rem;\n }\n\n .careers {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\n// No JavaScript needed for this simple static site\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 244,
+ "completion_tokens": 942,
+ "total_tokens": 1186,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 244
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..c34f3d1
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# engcareers.scroll.pub
+Website generated by DeepSeek from prompt: 大学英语专业的最好就业方向是什么,如何部署
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..47e8065
--- /dev/null
+++ b/script.js
@@ -0,0 +1 @@
+// No JavaScript needed for this simple static site
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..bb21823
--- /dev/null
+++ b/style.css
@@ -0,0 +1,85 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #333;
+ --background-color: #f9f9f9;
+ --text-color: #333;
+ --card-background: #fff;
+ --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: var(--background-color);
+ color: var(--text-color);
+}
+
+.hero {
+ background: var(--primary-color);
+ color: #fff;
+ padding: 2rem;
+ text-align: center;
+}
+
+.hero h1 {
+ margin: 0;
+ font-size: 2.5rem;
+}
+
+.hero p {
+ font-size: 1.2rem;
+}
+
+main {
+ padding: 2rem;
+}
+
+.intro, .deployment {
+ margin-bottom: 2rem;
+}
+
+.careers {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+}
+
+.career-card {
+ background: var(--card-background);
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: var(--card-shadow);
+ transition: transform 0.3s ease;
+}
+
+.career-card:hover {
+ transform: translateY(-5px);
+}
+
+.career-card h3 {
+ margin-top: 0;
+ color: var(--primary-color);
+}
+
+footer {
+ text-align: center;
+ padding: 1rem;
+ background: var(--secondary-color);
+ color: #fff;
+}
+
+@media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .hero p {
+ font-size: 1rem;
+ }
+
+ .careers {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file