commit 79f07a20cf99ded1cc3d49423acb9891864ad621
Author: root <root@hub.scroll.pub> Date: 2024-12-27 07:36:54 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..acf63df --- /dev/null +++ b/body.html @@ -0,0 +1,49 @@ +<header> + <div class="header-content"> + <h1>Welcome to Our Coworking Space</h1> + <p>Your next big idea starts here. Apply now to join our vibrant community of innovators and creators.</p> + </div> +</header> + +<main> + <section class="application-form"> + <h2>Apply to Join</h2> + <form id="applicationForm"> + <label for="name">Full Name</label> + <input type="text" id="name" name="name" required> + + <label for="email">Email Address</label> + <input type="email" id="email" name="email" required> + + <label for="phone">Phone Number</label> + <input type="tel" id="phone" name="phone" required> + + <label for="message">Tell us about yourself and why you want to join</label> + <textarea id="message" name="message" rows="5" required></textarea> + + <button type="submit">Submit Application</button> + </form> + </section> + + <section class="features"> + <h2>Why Choose Us?</h2> + <div class="feature-grid"> + <div class="feature"> + <h3>Collaborative Environment</h3> + <p>Work alongside like-minded individuals and grow together.</p> + </div> + <div class="feature"> + <h3>Flexible Plans</h3> + <p>Choose from daily, weekly, or monthly memberships.</p> + </div> + <div class="feature"> + <h3>Modern Amenities</h3> + <p>High-speed internet, meeting rooms, and more.</p> + </div> + </div> + </section> +</main> + +<footer> + <p>Questions? Reach out to us at <a href="mailto:info@cowork.scroll.pub">info@cowork.scroll.pub</a></p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..639121b --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://cowork.scroll.pub +metaTags +editButton /edit.html +title Join Our Coworking Space +style.css +body.html +script.js \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..f564250 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# cowork.scroll.pub +Website generated by DeepSeek from prompt: I want a website that people who intend to join our coworking space can apply using. Be creative \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..f8d3e8b --- /dev/null +++ b/script.js @@ -0,0 +1,5 @@ +document.getElementById('applicationForm').addEventListener('submit', function(event) { + event.preventDefault(); + alert('Thank you for your application! We will get back to you soon.'); + this.reset(); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..68f3529 --- /dev/null +++ b/style.css @@ -0,0 +1,148 @@ +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + background-color: #f4f4f4; + color: #333; +} + +header { + background: linear-gradient(135deg, #6a11cb, #2575fc); + color: white; + padding: 2rem 1rem; + text-align: center; +} + +.header-content h1 { + font-size: 2.5rem; + margin-bottom: 0.5rem; +} + +.header-content p { + font-size: 1.2rem; +} + +main { + padding: 2rem 1rem; +} + +.application-form { + max-width: 600px; + margin: 0 auto; + background: white; + padding: 2rem; + border-radius: 8px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.application-form h2 { + margin-bottom: 1.5rem; + font-size: 2rem; + color: #333; +} + +.application-form label { + display: block; + margin-bottom: 0.5rem; + font-weight: bold; +} + +.application-form input, +.application-form textarea { + width: 100%; + padding: 0.75rem; + margin-bottom: 1rem; + border: 1px solid #ccc; + border-radius: 4px; + font-size: 1rem; +} + +.application-form button { + background: #2575fc; + color: white; + padding: 0.75rem 1.5rem; + border: none; + border-radius: 4px; + font-size: 1rem; + cursor: pointer; + transition: background 0.3s ease; +} + +.application-form button:hover { + background: #1a5bbf; +} + +.features { + margin-top: 3rem; + text-align: center; +} + +.features h2 { + font-size: 2rem; + margin-bottom: 1.5rem; + color: #333; +} + +.feature-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1.5rem; +} + +.feature { + background: white; + padding: 1.5rem; + border-radius: 8px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.feature h3 { + font-size: 1.5rem; + margin-bottom: 0.75rem; + color: #2575fc; +} + +.feature p { + font-size: 1rem; + color: #555; +} + +footer { + text-align: center; + padding: 1rem; + background: #333; + color: white; + margin-top: 2rem; +} + +footer a { + color: #2575fc; + text-decoration: none; +} + +footer a:hover { + text-decoration: underline; +} + +@media (max-width: 768px) { + .header-content h1 { + font-size: 2rem; + } + + .header-content p { + font-size: 1rem; + } + + .application-form { + padding: 1rem; + } + + .features h2 { + font-size: 1.75rem; + } + + .feature-grid { + grid-template-columns: 1fr; + } +} \ No newline at end of file