0
3.8kviews
Explain HTML tags

Explain following HTML tags

i)

<form>

ii)

<table>

iii)

<iframe>

iv)

<doctype>

Mumbai University > Information Technology > Sem 4 > Web Programming

Marks: 10M

Year: Dec 2014

1 Answer
0
35views

a) <form>

  • <form> tag is used to create HTML form for user input
  • HTML form has various elements like inputbox,buttons,etc.
  • For example:

    <form>
    Name: <input type="text" name="studentname" required><br>
    <input type="submit" value="Submit">
    
  • The above code creates a form with text box and button.

b) <table>

  • This tag is used to create …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.