<!DOCTYPE html>
<html>

<head>
    <title>Page Title</title>

    <!-- Including the main.css file for styling -->
    <link rel="stylesheet" href="css/main.css">

    <!-- Including the Font Awesome CSS library for icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>

<body>

    <!-- Navigation bar -->
    <div class="topnav" id="myTopnav">
        <!-- Links to different sections -->
        <a href="index.html">Abstract</a>
        <a href="section1.html">Topic</a>

        <!-- Active link pointing to the section2.html page -->
        <a class="active" href="section2.html">Method</a>

        <a href="section3.html">Inspiration</a>
        <a href="references.html">References</a>

        <!-- "Hamburger menu" / "Bar icon" to toggle the navigation links on smaller screens -->
        <a href="javascript:void(0);" class="icon">
            <i class="fa fa-bars"></i>
        </a>
    </div>

    <!-- Page content -->
    <div class="content">
        <!-- Section 2 content -->
        For specific method, I want to use the ACS 1-Year data on relevant topic.
        For example, the recent data on population that has no access to vehicles.
        I also need the distribution of recent King County public transportation to
        generate a map correctly.
        Below is a table of possible data needed.
        <br>
        <table class="center">
            <tr>
              <th>Possible Data Used</th>
              <th>Name</th>
              <th>Link</th>
            </tr>
            <tr>
              <td>People without vechiles</td>
              <td>ACS 1 Year data</td>
              <td>https://data.census.gov/table</td>
            </tr>
            <tr>
              <td>Distribution of Public Transport</td>
              <td>Metro bus stop point data</td>
              <td>TBD</td>
            </tr>
            <tr>
              <td>(Not sure) Distribution of Population timely</td>
              <td>not known, maybe web-based technology</td>
              <td>TBD</td>
            </tr>
          </table>
    </div>

    <!-- Including the main.js file for JavaScript functionality -->
    <script src="js/main.js"></script>

</body>

</html>