December-software-project/sort-algo

View on GitHub
public/index.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="icon" href="%PUBLIC_URL%/barChart.png" />
    <link rel="apple-touch-icon" href="%PUBLIC_URL%/barChart.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="theme-color" content="#000000" />
    <meta name="description" content="Sort-Algo" />
    <meta name="title" property="og:title" content="Sort-Algo" />
    <meta property="og:type" content="Website" />
    <meta name="image" property="og:image" content="%PUBLIC_URL%/Thumbnail.png" />
    <meta name="description" property="og:description" content="Sort-Algo" />
    <meta name="author" content="Keane Chan, Sean Lum, Ashley Lau" />
    <meta
      name="Sort-Algo"
      content="Website built for everyone to learn and understand sorting algorithms!"
    />
    <!--
      manifest.json provides metadata used when your web app is installed on a
      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
    -->
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
    <!--
      Notice the use of %PUBLIC_URL% in the tags above.
      It will be replaced with the URL of the `public` folder during the build.
      Only files inside the `public` folder can be referenced from the HTML.

      Unlike "/barChart.png" or "barChart.png", "%PUBLIC_URL%/barChart.png" will
      work correctly both with client-side routing and a non-root public URL.
      Learn how to configure a non-root public URL by running `npm run build`.
    -->
    <link rel="preconnect" href="https://fonts.gstatic.com" />
    <link
      href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Open+Sans:wght@400;600;700;800&display=swap"
      rel="stylesheet"
    />
    <title>SortAlgo</title>
  </head>
  <body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root"></div>
  </body>
</html>