# ember/template-no-arguments-for-html-elements
💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations).
💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): `strict-gjs`, `strict-gts`.
Disallow `@arguments` on HTML elements.
Arguments (using the `@` prefix) are a feature specific to Ember components. They should not be used on regular HTML elements, which only support standard HTML attributes.
## Rule Details
This rule disallows using `@arguments` on HTML elements. Use regular attributes instead.
## Examples
### Incorrect ❌
```gjs
Content
```
```gjs
```
```gjs
Text
```
### Correct ✅
```gjs