HTML Questions
- Write the HTML code for a very simple document with a title and one
line of text.
(10 marks)
- Marking scheme:
2 points a tag
2 points for head and body
2 points for title
2 points for p or other tag with text
2 points for a completely correct answer
-
Sample answer:
< HTML >
< head > < title > 4430 exam answer </title > </head >
< body >
< p >This is the answer text < /p >
< /body >
< /HTML >
- Write a portion of HTML code to give an unordered list of three
elements: green, red and blue.
(8 marks)
- Marking scheme:
2 points for a tag
2 points for ul
2 points for li-s
2 points for completely correct
- Sample answer:
< ul >
< li > green < /li >
< li > red < /li >
< li > blue < /li >
< /ul >