commit f38771e78761e8d34315360e0410735ee979b648
Author: root <root@hub.scroll.pub>
Date: 2025-01-02 02:03:30 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..c217705
--- /dev/null
+++ b/body.html
@@ -0,0 +1,57 @@
+<header>
+ <h1>Order Tickets from Chinese Company</h1>
+ <nav>
+ <ul>
+ <li><a href="#about">About</a></li>
+ <li><a href="#services">Services</a></li>
+ <li><a href="#contact">Contact</a></li>
+ </ul>
+ </nav>
+</header>
+
+<main>
+ <section id="about">
+ <h2>About Us</h2>
+ <p>We specialize in providing seamless ticket ordering services for events across China. Our platform ensures a hassle-free experience for all your ticketing needs.</p>
+ </section>
+
+ <section id="services">
+ <h2>Our Services</h2>
+ <div class="service-grid">
+ <div class="service-card">
+ <h3>Event Tickets</h3>
+ <p>Order tickets for concerts, sports, and cultural events.</p>
+ </div>
+ <div class="service-card">
+ <h3>Transport Tickets</h3>
+ <p>Book train, bus, and flight tickets with ease.</p>
+ </div>
+ <div class="service-card">
+ <h3>Group Bookings</h3>
+ <p>Special rates and services for group bookings.</p>
+ </div>
+ </div>
+ </section>
+
+ <section id="contact">
+ <h2>Contact Us</h2>
+ <form id="contact-form">
+ <label for="name">Name:</label>
+ <input type="text" id="name" name="name" required>
+ <label for="email">Email:</label>
+ <input type="email" id="email" name="email" required>
+ <label for="message">Message:</label>
+ <textarea id="message" name="message" required></textarea>
+ <button type="submit">Send</button>
+ </form>
+ </section>
+</main>
+
+<footer>
+ <p>Follow us on social media for updates and promotions.</p>
+ <ul>
+ <li><a href="#">Facebook</a></li>
+ <li><a href="#">Twitter</a></li>
+ <li><a href="#">Instagram</a></li>
+ </ul>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..5f187c9
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://ticketchina.scroll.pub
+metaTags
+editButton /edit.html
+title Order Tickets from Chinese Company
+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..6c21f45
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "94a0d46e-da92-499f-92a7-fbd8c0447279",
+ "object": "chat.completion",
+ "created": 1735783391,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nticketchina.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://ticketchina.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Order Tickets from Chinese Company\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Order Tickets from Chinese Company</h1>\n <nav>\n <ul>\n <li><a href=\"#about\">About</a></li>\n <li><a href=\"#services\">Services</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section id=\"about\">\n <h2>About Us</h2>\n <p>We specialize in providing seamless ticket ordering services for events across China. Our platform ensures a hassle-free experience for all your ticketing needs.</p>\n </section>\n\n <section id=\"services\">\n <h2>Our Services</h2>\n <div class=\"service-grid\">\n <div class=\"service-card\">\n <h3>Event Tickets</h3>\n <p>Order tickets for concerts, sports, and cultural events.</p>\n </div>\n <div class=\"service-card\">\n <h3>Transport Tickets</h3>\n <p>Book train, bus, and flight tickets with ease.</p>\n </div>\n <div class=\"service-card\">\n <h3>Group Bookings</h3>\n <p>Special rates and services for group bookings.</p>\n </div>\n </div>\n </section>\n\n <section id=\"contact\">\n <h2>Contact Us</h2>\n <form id=\"contact-form\">\n <label for=\"name\">Name:</label>\n <input type=\"text\" id=\"name\" name=\"name\" required>\n <label for=\"email\">Email:</label>\n <input type=\"email\" id=\"email\" name=\"email\" required>\n <label for=\"message\">Message:</label>\n <textarea id=\"message\" name=\"message\" required></textarea>\n <button type=\"submit\">Send</button>\n </form>\n </section>\n</main>\n\n<footer>\n <p>Follow us on social media for updates and promotions.</p>\n <ul>\n <li><a href=\"#\">Facebook</a></li>\n <li><a href=\"#\">Twitter</a></li>\n <li><a href=\"#\">Instagram</a></li>\n </ul>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n background-color: #f4f4f4;\n color: #333;\n}\n\nheader {\n background-color: #333;\n color: #fff;\n padding: 20px;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n}\n\nnav ul {\n list-style: none;\n padding: 0;\n}\n\nnav ul li {\n display: inline;\n margin: 0 15px;\n}\n\nnav ul li a {\n color: #fff;\n text-decoration: none;\n}\n\nmain {\n padding: 20px;\n}\n\nsection {\n margin-bottom: 40px;\n}\n\nh2 {\n color: #333;\n border-bottom: 2px solid #333;\n padding-bottom: 10px;\n}\n\n.service-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 20px;\n}\n\n.service-card {\n background-color: #fff;\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n text-align: center;\n}\n\n.service-card h3 {\n margin-top: 0;\n}\n\nform {\n display: flex;\n flex-direction: column;\n}\n\nform label {\n margin-bottom: 5px;\n}\n\nform input, form textarea {\n margin-bottom: 15px;\n padding: 10px;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n\nform button {\n padding: 10px;\n background-color: #333;\n color: #fff;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n}\n\nform button:hover {\n background-color: #555;\n}\n\nfooter {\n background-color: #333;\n color: #fff;\n text-align: center;\n padding: 20px;\n}\n\nfooter ul {\n list-style: none;\n padding: 0;\n}\n\nfooter ul li {\n display: inline;\n margin: 0 15px;\n}\n\nfooter ul li a {\n color: #fff;\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n nav ul li {\n display: block;\n margin: 10px 0;\n }\n\n .service-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.getElementById('contact-form').addEventListener('submit', function(event) {\n event.preventDefault();\n alert('Thank you for contacting us! We will get back to you shortly.');\n this.reset();\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 243,
+ "completion_tokens": 1151,
+ "total_tokens": 1394,
+ "prompt_cache_hit_tokens": 192,
+ "prompt_cache_miss_tokens": 51
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..23086c3
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# ticketchina.scroll.pub
+Website generated by DeepSeek from prompt: a web site to order tickets from Chinese Company
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..19b5f27
--- /dev/null
+++ b/script.js
@@ -0,0 +1,5 @@
+document.getElementById('contact-form').addEventListener('submit', function(event) {
+ event.preventDefault();
+ alert('Thank you for contacting us! We will get back to you shortly.');
+ this.reset();
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..a649a23
--- /dev/null
+++ b/style.css
@@ -0,0 +1,127 @@
+body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f4;
+ color: #333;
+}
+
+header {
+ background-color: #333;
+ color: #fff;
+ padding: 20px;
+ text-align: center;
+}
+
+header h1 {
+ margin: 0;
+}
+
+nav ul {
+ list-style: none;
+ padding: 0;
+}
+
+nav ul li {
+ display: inline;
+ margin: 0 15px;
+}
+
+nav ul li a {
+ color: #fff;
+ text-decoration: none;
+}
+
+main {
+ padding: 20px;
+}
+
+section {
+ margin-bottom: 40px;
+}
+
+h2 {
+ color: #333;
+ border-bottom: 2px solid #333;
+ padding-bottom: 10px;
+}
+
+.service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 20px;
+}
+
+.service-card {
+ background-color: #fff;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ text-align: center;
+}
+
+.service-card h3 {
+ margin-top: 0;
+}
+
+form {
+ display: flex;
+ flex-direction: column;
+}
+
+form label {
+ margin-bottom: 5px;
+}
+
+form input, form textarea {
+ margin-bottom: 15px;
+ padding: 10px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+
+form button {
+ padding: 10px;
+ background-color: #333;
+ color: #fff;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+}
+
+form button:hover {
+ background-color: #555;
+}
+
+footer {
+ background-color: #333;
+ color: #fff;
+ text-align: center;
+ padding: 20px;
+}
+
+footer ul {
+ list-style: none;
+ padding: 0;
+}
+
+footer ul li {
+ display: inline;
+ margin: 0 15px;
+}
+
+footer ul li a {
+ color: #fff;
+ text-decoration: none;
+}
+
+@media (max-width: 768px) {
+ nav ul li {
+ display: block;
+ margin: 10px 0;
+ }
+
+ .service-grid {
+ grid-template-columns: 1fr;
+ }
+}
\ No newline at end of file