Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

HTML Interview Questions and Answers

Test your skills through the online practice test: HTML Quiz Online Practice Test

Related differences

Related differences

HTML vs XMLHTML vs XHTMLHTML vs DHTML
HTML 5 vs HTML 4

Ques 16. Do I have to memorize a bunch of tags?

No. Most programs that help you write HTML code already know most tags, and create them when you press a button. But you should understand what a tag is, and how it works. That way you can correct errors in your page more easily.

Is it helpful? Add Comment View Comments
 

Ques 17. How do I make a form so it can be submitted by hitting ENTER?

The short answer is that the form should just have one <INPUT TYPE=TEXT> and no TEXTAREA, though it can have other form elements like checkboxes and radio buttons.

Is it helpful? Add Comment View Comments
 

Ques 18. How do I set the focus to the first form field?

You cannot do this with HTML. However, you can include a script after the form that sets the focus to the appropriate field, like this:

<form id="myform" name="myform" action=...>
<input type="text" id="myinput" name="myinput" ...>
</form>

<script type="text/javascript">
document.myform.myinput.focus();
</script>

A similar approach uses <body onload=...> to set the focus, but some browsers seem to process the ONLOAD event before the entire document (i.e., the part with the form) has been loaded.

Is it helpful? Add Comment View Comments
 

Ques 19. How can I eliminate the extra space after a </form> tag?

HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example:
<form style="margin-bottom:0;" action=...>

You can also use a CSS style sheet to affect all the forms on a page:
form { margin-bottom: 0 ; }

Is it helpful? Add Comment View Comments
 

Ques 20. Can I have two or more actions in the same form?

No.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook