Monday, October 26, 2015

HTML/HTML5 Interview Questions and Answers

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>
16) Is it possible to have multiple actions in a same form?
No. It is not possible to have multiple actions in a single form tag.
17) How to redirect to new page on click of button in HTML?
Below is the sample code to redirect to new page on post and on click of button –
<form action=”your url”>
<input type=”submit” value=”MyClick” =/>
</form>
18) How we can have different cells in each row in <table>?
We can have “td” tags in each row <tr>.
Below is the sample code for using <td> in <tr> -
<TR>
<TD>Test Column 1</TD>
<TD>Test Column 2</TD>
</TR>
19) What is the difference between <div> and <span> in HTML?
<div> is like a container and it is like having <br> (line break) tag before and after the block.
<span> is a inline and it is used for small HTML like paragraph.
20) Which browsers have a support to HTML 5?
Almost all latest browsers have a support for HTML which includes Chrome, FireFox, IE etc.

No comments: