# The conference skeleton

**HTML sample**

```
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>WT Demo</title>
    <!-- Connect Watch Together SDK -->
    <script src="./WTSDK.js"></script>
</head>
<body>
  <button onclick="connect()">Start</button>
  <button onclick="disconnect()">Disconnect</button>
  <button onclick="videoOn()">Video ON</button>
  <button onclick="videoOff()">Video OFF</button>
  <button onclick="voiceOn()">Voice ON</button>
  <button onclick="voiceOff()">Voice Off</button>
  <button onclick="screenSharing()">Screen Share</button>
  <button onclick="stopScreenSharing()">Stop Screen Share</button>
    <div id="video">
      <!-- Container for video streams -->  
    </div>
    <script src="./index.js"></script>
</body>
</html>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.sceenic.co/watch-together-sdk/sscale-confluence-tutorials/web/sample-application/the-conference-skeleton.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
