From 435b1bd54752038d1a2e0deacef6df425f279b78 Mon Sep 17 00:00:00 2001 From: manishkaa <35163295+manishkaa@users.noreply.github.com> Date: Mon, 5 Nov 2018 02:47:13 +0530 Subject: [PATCH] Update index.md (#22132) * Update index.md * corrected list item syntax --- guide/english/html/html-forms/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/html/html-forms/index.md b/guide/english/html/html-forms/index.md index 113efbdcab..7ec867ebae 100644 --- a/guide/english/html/html-forms/index.md +++ b/guide/english/html/html-forms/index.md @@ -48,6 +48,8 @@ Other elements that form can contain: - ```textarea``` - is a multiline box which is most often used for adding some text eg. comment. Size of textarea is defined by number of rows and columns. - ```select``` - together with `````` tag creates drop-down select menu. - ```button``` - The button element can be used to define a clickable button. +- ```fieldset```- It groups related elements in a form. +- ```legend```- It defines a caption for a
element. MORE INFORMATION ON HTML FORMS.