Sample of index.html - Developer Documentation
Skip to content

index.html

Create an index.html file with the following content:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Event Count</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" type="text/css" media="screen" href="main.css" />
  <script src="main.js"></script>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="column">
      <br><br>
      <div class="eventAnalytics">
        <form id="eventAnalytics-form" onsubmit="return false;">
          <div class="form-group">
            <label >Event Count Input</label>
            <textarea id="eventAnalyticsInput" type="text" rows="10" cols="50" minlength=20 name="eventAnalyticsInput" value=""></textarea>
          </div>
          <button type="submit" onclick="eventAnalytics(); return false;">Execute</button>
        </form>
        </div>
        </div>
        <div class="column">
        <br><br>
        <div class="eventAnalytics">
        <label >Event Count Output</label><br>
          <textarea id="eventAnalytics-result" type="text" rows="10" cols="50"></textarea>
        </div>
        </div>
  </div>
</body>
</html>

Except where otherwise noted, content on this site is licensed under the Development License Agreement.


Last update: March 5, 2019