Code for starting some new websites
<!-- Starting standard document structure elements -->
<div class="main-dashboard">
    <header>
        <h1>My website</h1>
    </header>
    <section id="main-page">
        <div class="container">
            <h3>1st thing</h3>
            <p>Some info about me </p>
            <button class="btn-view">click for more infomation</button>
        </div>
        <div class="user-card">
            <h3>2nd thing</h3>
            <p>Games</p>
            <button class="btn-view">Click here to play</button>
        </div>
    </section>
    <footer>
        <p>Fun!!!</p>
    </footer>
</div>