OE
Ocean & Everest
Capital
Tools
Affiliated
Key Projects
About
Services
团队
Contact
中文
Back
|
HTML Editor
Templates
Copy
Clear
Save PDF
Code
Preview
HTML Code
1,090 chars
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Document</title> <style> body { font-family: 'Segoe UI', system-ui, sans-serif; max-width: 800px; margin: 40px auto; padding: 0 24px; color: #1e2a3e; line-height: 1.6; } h1 { color: #1e3a5f; border-bottom: 3px solid #f5b042; padding-bottom: 8px; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th { background: #1e3a5f; color: white; padding: 12px; text-align: left; } td { padding: 10px 12px; border-bottom: 1px solid #e2e8f0; } </style> </head> <body> <h1>Sample Document</h1> <p>Paste your HTML here and see a live preview. Click <strong>Save as PDF</strong> to export.</p> <table> <thead><tr><th>Column A</th><th>Column B</th><th>Column C</th></tr></thead> <tbody> <tr><td>Row 1, A</td><td>Row 1, B</td><td>Row 1, C</td></tr> <tr><td>Row 2, A</td><td>Row 2, B</td><td>Row 2, C</td></tr> </tbody> </table> </body> </html>
Live Preview
Updates as you type