fix(learn): Change example text in create-a-form-element.md (#40542)

* Update create-a-form-element.md

Update example. For issue 40523

* Clearer formatting of example
This commit is contained in:
Thomas
2021-01-16 04:11:47 -05:00
committed by GitHub
parent f159ad873c
commit fc976aba74

View File

@ -12,7 +12,11 @@ You can build web forms that actually submit data to a server using nothing more
For example: For example:
`<form action="/url-where-you-want-to-submit-form-data"></form>` ```html
<form action="/url-where-you-want-to-submit-form-data">
<input>
</form>
```
# --instructions-- # --instructions--