<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <link rel="stylesheet" href="css/style.css">
    <link rel="stylesheet" href="css/rwd.css">
    <title>3-column-responsive-layout</title>
</head>
<body>
    <div class="page-wrapper">
        <header class="header">
            Header: Fixed height
        </header>
        <section class="content">
            <div class="columns">
                <main class="main">
                    Content: Flexible width
                </main>
                <aside class="sidebar-first">
                    Sidebar-first: Fixed width
                </aside>
                <aside class="sidebar-second">
                    Sidebar-second: Fixed width
                </aside>
            </div>
        </section>
        <footer class="footer">
            Footer: Fixed height
        </footer>
    </div>
</body>
</html>