What is a humans.txt file?
Short answer
humans.txt is a plain-text file at /humans.txt that credits the people behind a site. It is a friendly convention — not a standard — usually split into TEAM, THANKS, and SITE sections.
Credit the people behind the site
While robots.txt speaks to crawlers, humans.txt speaks to people. It is a small text file that names the team, thanks contributors, and lists the technology a site is built with.
/* TEAM */
Developer: Jane Doe
Site: jane@example.com
Location: Vienna, Austria
/* SITE */
Last update: 2026-07-19
Standards: HTML5, CSS3
Components: Next.js, ReactWhere it goes
The file lives at the root of the domain, at https://example.com/humans.txt. Many sites also add a <link rel="author" href="/humans.txt"> in the page head to point to it.
Conventional sections
/* TEAM */— the people who built the site, with roles and contacts/* THANKS */— contributors, libraries, or inspirations to credit/* SITE */— last update, languages, standards, and components used