/*menu*/
.menu-item {
  margin-bottom: 40px;
}

h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  line-height: 24px;
}
<div id="menu"></div>

<script>
  var menuContainer = document.getElementById("menu");
  var now = new Date();
  
  function updateMenu() {
    var now = new Date();
    if (now.getDay() === 0 || now.getDay() === 6) {
      // weekend brunch menu
      menuContainer.innerHTML = `
        <h2>Brunch Menu</h2>
        <p><em>BRUNCH<br>Saturday & Sunday 11-2:30pm</em></p>
        <h3>DRINKS</h3>
        <ul>
          <li>BEAN2BEAN COFFEE</li>
          <li>THE LADIES WHO BRUNCH 10<br>Grapefruit and Rosemary Bellini</li>
          <li>Mimosa 8 || Irish Coffee 9 || Bloody Mary/Maria 10</li>
          <li>Cant taste the tequila 8<br>grapefruit, pomegranate, lime juice</li>
          <li>Stubborn Mule 8<br>ginger beer, lime soda</li>
          <li>That spritzer jawn 8<br>mango, lime, ginger beer, club soda</li>
          <li>Almost Paradise 9<br>pineapple, mango, lime, strawberry, club soda</li>
          <li>My boy chamoy 8<br>cranberry, chamoy honey, club soda</li>
        </ul>
        <p>Be sure to check out our full cocktail list under the drinks tab!</p>
        <h3>SOUPS, SALADS AND SNACKS</h3>
        <ul>
          <li>WINGS 12<br>choose from Buffalo, Chipotle BBQ or Garlic Pecorino<br>extra sauce 0.50</li>
          <li>SOUP OF THE DAY 9<br>add grilled cheese +7 || add house salad +5</li>
          <li>CAESAR SALAD 13<br>croutons, parmesan, capers, chopped egg,<br>add blackened chicken 4</li>
          <li>HOUSE SALAD (V) 11<br>Green Meadow mixed greens, herbs, red radish, carrots, red onion, champagne poppy seed vinaigrette<br>add blackened chicken 4</li>
          <li>EDGAR WINTER SALAD (V) 14<br>Kale/spring mix, apple, red onion, candies pecans, acorn squash, Honey Miso Vinaigrette dressing<br>add blackened chicken 4</li>
        </ul>
      `;
    } else {
      // regular menu
      menuContainer.innerHTML = `
        <h2>Regular Menu</h2>
        <h3>APPETIZERS</h3>
        <ul>
          <li>BRUSSEL SPROUTS 11<br>smoked bacon, shallots, soy, honey, lime, sesame seeds</li>
          <li>FRIED OYSTERS 16<br>lemon herb aioli, sweet corn relish, herb salad</li>
          <li>ROASTED CARROT HUMMUS (V) 12<br>za'atar, house made chips</li>
          <li>CRAB DIP 16<br>parmesan, grilled bread</li>
          <li>SOFT PRETZELS 10<br>beer cheese, mustard</li>
        </ul>}}
</script>