HTML - Fluid Topics

Fluid Topics Integration Guide

Category
Reference Guides
Audience
public
Version
Latest

Copy the following code block to the HTML file to integrate the Document views menu:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="icon" href="https://doc.fluidtopics.com/favicon.ico">
  <title>Back Office - Analytics Dashboard</title>
  <link rel="stylesheet" href="style.css">
  <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>

<body>
  <header>
    <div class="header-content">
      <img src="https://www.fluidtopics.com/wp-content/uploads/sites/3/logoFluidTopics2020-white@2x.png" alt="Fluid Topics logo featuring a stylized white letter 'f' on a purple circular background, followed by the text 'Fluid Topics' in white letters on a transparent background." class="logo">
      <h1>Analytics Dashboard</h1>
    </div>
  </header>

  <main>
    <div class="grid-container">

      <div class="tile" id="most-viewed-docs">
        <h2>Most Viewed Documents</h2>
        <div class="loading-indicator">Loading...</div>
        <table id="most-viewed-table">
          <thead>
            <tr>
              <th>Title</th>
              <th>Views</th>
              <th>Link</th>
            </tr>
          </thead>
          <tbody></tbody>
        </table>
      </div>

    </div>
  </main>

  <footer>
    <p>© 2025 Analytics Dashboard</p>
  </footer>

  <script src="script.js"></script>
</body>

</html>