# HTML

## Introduction

HTML is the standard markup language for Web pages. HTML uses tags to designate different elements (eg. the \<img> tag embeds an image, and the \<p> tag begins a new paragraph).

## Example HTML 1

```html
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
```

## Example Output 1

<figure><img src="/files/axCyUWwvQDsYUULEYU0S" alt=""><figcaption></figcaption></figure>

## Example HTML 2

```html
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My <del>First</del> <ins>Second</ins> Heading</h1>

<img src="https://blog-media.byjusfutureschool.com/bfs-blog/2021/09/17203233/What-is-HTML-Article-Page-948_500.png">

<p><mark>My first paragraph.</mark></p>

</body>
</html>
```

## Example Output 2

<figure><img src="/files/L6FWEYHqA8t8lIfzgpUP" alt=""><figcaption></figcaption></figure>

## Resources

* [HTML Tutorial](https://www.w3schools.com/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://docs.bcbi.brown.edu/codiac-for-health/computing/html.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.
