JSFiddle - React, Tailwind, and code Playground

by Jordan Sayner

HTML

<table class="table table--cookies">
    <thead>
        <tr>
            <th>Name of Cookie</th>
            <th>Essential/Non-essential/Analytical</th>
            <th>Type of cookie</th>
            <th>First or Third party?</th>
            <th>Session or Persistent?</th>
            <th>Expiry Time</th>
            <th>Purpose</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>ASP.NET_SessionId</td>
            <td>Essential</td>
            <td>HTTP</td>
            <td>First Party</td>
            <td>Session</td>
            <td>End of session</td>
            <td>To preserve the visitor’s session state across page requests</td>
        </tr>
        <tr>
            <td>__cookie-bar</td>
            <td>Functionality / session cookie</td>
            <td>HTTP</td>
            <td>First Party</td>
            <td>Session</td>
            <td>End of session</td>
            <td>Remembers whether or not you have seen the cookie disclaimer message.</td>
        </tr>
    </tbody>
</table>



<table class="table table--cookie">
  <thead>
    <tr>
      <th>Name of Cookie</th>
      <th>ASP.NET_SessionId</th>
      <th>__cookie-bar</th>
    </tr>
  </thead>  
  <tbody>
    <tr>
      <td>Essential/ Non-essential/Analytical</td>
      <td>Essential</td>
      <td>Functionality / session cookie</td>
    </tr>
    <tr>
      <td>Type of cookie</td>
      <td>HTTP</td>
      <td>HTTP</td>
    </tr>
    <tr>
      <td>First or Third Party</td>
      <td>First Party</td>
      <td>First Party</td>
    </tr>
    <tr>
      <td>Session or Persistent</td>
      <td>Session</td>
      <td>Persistent</td>
    </tr>
    <tr>
      <td>Expiry Time</td>
      <td>End of session</td>
      <td>365 days</td>
    </tr>
    <tr>
      <td>Purpose</td>
      <td>To preserve the visitor’s session state across page requests</td>
      <td>Remembers whether or not you have seen the cookie disclaimer message.</td>
    </tr>
  </tbody>
</table>