11) How to use <form> in HTML?
Below is the syntax of <form> in HTML form –
<form action="[URL]">
When form is submitted then form data has been sent to URL, which is specified in the URL attribute. URL is referred to server side program.
12) What is hyperlink in HTML?
Hyperlinks can be used in images and for texts. Below is the examples of using hyperlinks –
<a href=”My URL “>…</a>
13) Explain <ul> in HTML?
In HTML <ul> defined for unordered list. <li> tags will be used along with <ul>.
<ul> <li>Add</li> <li>Subtract</li> <li>Divide</li> </ul>
14) Explain type and value attributes of <li> in HTML?
Type attribute in <li> is used to specify the style of bullet point of an item in list.
Value attribute in <li> tag is used to set the value of list item in list.
Syntax for type and value of <li>
<li type="a">Add</li> <li value="100">Add</li>
15) How to set the focus to the element in HTML?
Below is the sample code to set the focus for HTML element –
<input type="text" id="mytestinput" name="mytestinput" ...> <script type="text/javascript"> document.myform.mytestinput.focus(); </script>