HTML Layout Generator
Visual drag & drop HTML layout builder. Create semantic page structures with header, nav, main, sidebar, and footer.
Layout Structure
<header>
<nav>
<main>
<section>
<section>
<aside>
<footer>
Output Options
Preview
<header> Header
<nav> Navigation
<main> Main Content
<section> Hero Section
<section> Features
<aside> Sidebar
<footer> Footer
Generated HTMLhtml
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>My Website</title> 7 <link rel="stylesheet" href="styles.css"> 8 </head> 9 <body> 10 <!-- Header --> 11 <header class="header header"></header> 12 13 <!-- Navigation --> 14 <nav class="nav navigation"></nav> 15 16 <!-- Main Content --> 17 <main class="main main-content"> 18 <!-- Hero Section --> 19 <section class="section hero-section"></section> 20 <!-- Features --> 21 <section class="section features"></section> 22 </main> 23 24 <!-- Sidebar --> 25 <aside class="aside sidebar"></aside> 26 27 <!-- Footer --> 28 <footer class="footer footer"></footer> 29 </body> 30 </html>
Generated CSScss
1 /* Reset */ 2 * { 3 margin: 0; 4 padding: 0; 5 box-sizing: border-box; 6 } 7 8 /* Base styles */ 9 body { 10 font-family: system-ui, -apple-system, sans-serif; 11 line-height: 1.6; 12 color: #333; 13 } 14 15 /* Layout */ 16 .header { 17 padding: 1rem 2rem; 18 background: #f8f9fa; 19 border-bottom: 1px solid #e9ecef; 20 } 21 22 .nav { 23 padding: 0.5rem 2rem; 24 background: #343a40; 25 color: white; 26 } 27 28 .main { 29 max-width: 1200px; 30 margin: 0 auto; 31 padding: 2rem; 32 } 33 34 .section { 35 margin-bottom: 2rem; 36 padding: 1rem; 37 } 38 39 .aside { 40 padding: 1rem; 41 background: #f8f9fa; 42 border-radius: 0.5rem; 43 } 44 45 .footer { 46 padding: 2rem; 47 background: #343a40; 48 color: white; 49 text-align: center; 50 } 51 52 .article { 53 padding: 1rem; 54 background: white; 55 border: 1px solid #e9ecef; 56 border-radius: 0.5rem; 57 }
Ready to launch your website?
Get professional hosting from $2.99/mo with free domain and SSL.