From a873f06ef4175ebb43c1cb85d2684851dd546e96 Mon Sep 17 00:00:00 2001 From: Regem Semilla Date: Wed, 12 Dec 2018 00:25:54 +0800 Subject: [PATCH] Adding two method: GET and POST (#31049) --- guide/english/html/html-forms/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guide/english/html/html-forms/index.md b/guide/english/html/html-forms/index.md index 38858c121b2..db3d9bc18a9 100644 --- a/guide/english/html/html-forms/index.md +++ b/guide/english/html/html-forms/index.md @@ -88,7 +88,10 @@ A form will take input from the site visitor and then will post it to a back-end The HTML `
` tag is used to create an HTML form and it has the following syntax − ``` html - + + form elements like input, textarea etc. +
+
form elements like input, textarea etc.
```