Sample Question Solution

Samples for filling in blanks: 

HTML is an abbreviation for ___Hyper Text Markup Language___. 

<br> tag in HTML is used to ____defines a line break______. 

Samples for multi-choice questions: 

What is the correct HTML for inserting an image? ( d ) 

a. <img href="image.gif> 

b. <image src="image.gif"> 

c. <img>image.gif</img> 

d. <img src="image.gif"> 

Samples for programming part:

Assume you want to add an online picture to your HTML file with fixed size width 200 and height 300, and the url of the picture is "http://aaa.com/abd.jpeg". Write down the correct code to add this picture to your HTML file.

<img src="http://aaa.com/abd.jpeg" width="200" height="300" />