0x1998 - MANAGER
Düzenlenen Dosya: plan.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>techechi.shop | Plan Application</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap" rel="stylesheet"> <link rel="stylesheet" href="plan.css" /> </head> <body> <header class="plan-header"> <div class="wrap nav-line"> <a href="index.html" class="brand">techechi.shop</a> <nav> <a href="index.html#services">Services</a> <a href="index.html#pricing">Pricing</a> <a href="index.html#faq">FAQ</a> </nav> <a href="index.html" class="btn ghost">Back to home</a> </div> </header> <main class="wrap plan-layout"> <section class="left"> <h1>Apply for <span id="planName">Starter</span> Plan</h1> <p id="planIntro">You are one step away from launching your marketing growth system.</p> <div class="next-box"> <h3>What happens next?</h3> <ol> <li>We review your application details</li> <li>Our team schedules a strategy onboarding call</li> <li>You receive your custom growth roadmap by email</li> </ol> </div> </section> <section class="right"> <form id="planForm" novalidate> <label>Full Name</label> <input id="fullName" type="text" placeholder="John Doe" /> <small class="err"></small> <div class="grid-2"> <div> <label>Email Address</label> <input id="planEmail" type="email" placeholder="john@example.com" /> <small class="err"></small> </div> <div> <label>Phone Number</label> <input id="planPhone" type="tel" placeholder="+1 555 000 0000" /> <small class="err"></small> </div> </div> <label>Company Name (Optional)</label> <input id="planCompany" type="text" placeholder="Acme Inc." /> <small class="err"></small> <label>Message or Special Requirements</label> <textarea id="planMsg" rows="4" placeholder="Share your goals and requirements"></textarea> <small class="err"></small> <p id="planStatus" class="status"></p> <button type="submit" class="btn solid">Submit Application</button> </form> </section> </main> <script src="plan.js"></script> </body> </html>
geri dön