Posts

<!doctype html> <html lang="en"> <head>   <meta charset="utf-8" />   <title>Table of Specification / Blueprint — Cultural Institution</title>   <meta name="viewport" content="width=device-width,initial-scale=1" />   <style>     /* Page / print setup */     @page { size: A4; margin: 20mm; }     @media print {       body { -webkit-print-color-adjust: exact; }       .no-print { display: none; }     }     body{       font-family: "Helvetica", Arial, sans-serif;       color: #111;       margin: 0;       padding: 16px;       background: #fff;     }     .container{       max-width: 900px;       margin: 0 auto;     }     header{       text-align: center;       margin-bottom: 12px;     }     h1{       font-size: 20px;       margin: 0 0 6px;     }     p.subtitle{       margin: 0;       font-size: 13px;       color: #333;     }     /* Table styling */     table {       width: 100%;       border-collapse: collapse;       margin-top: 14px;   …

Post a Comment