/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-html-6bfe5347bbf9-html-s0770-c0000.md
`html` - hono-docs
html Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt html Summary Content
html
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#html
Summary
## Content
```ts
const app = new Hono()
app.get('/:username', (c) => {
const { username } = c.req.param()
return c.html(
html`<!doctype html>
<h1>Hello! ${username}!</h1>`
)
})