Here are 10 HTML MCQ questions. Each question has four options and there is only one correct answer. Select correct answer among the given options by clicking on the respective radio button for each HTML MCQ question. When you finish attempting each question, click on show results button.
Please allow one or two seconds for the system to check your answers and present the result sheet. Wait till you see the results updated on this page.
HTML MCQ Quiz Set 01
This HTML MCQ Quiz is published in MCQSets.com
Inserting Manual Line Breaks in HTML document
Manual line breaks are often required in web documents. Many times you don’t want to place anything after the position in current line and the available space is not yet occupied. Due to the auto word wrap feature, the line break occurs automatically when you reach to the end of available width but if you need to break a line without completing the width, you must force the break.
Forced line breaks or manual line breaks are inserted in HTML documents by using the BR tag. Web browser will end the current line wherever it encounters BR tag and starts a new line. Let’s look at following example:
<p align="center">Multiple Choice Questions from Hypertext Markup Language <br> HTML MCQ Set 01</p>
The above code will produce following output:
Remember, the line break is different than paragraph break. Even if you reach to a new line using BR tag, you still have all those paragraph formatting applied.
Finally, because BR is a single tag, it does not have it’s closing counterpart. However, if you see <br /> tags in source codes, don’t get confused. This is general customary to close single tags that way.
Don’t forget to like in Facebook, Google+ and Tweet if you find this HTML MCQ Set useful!
Leave a Reply