Summative Assessment  - Developing For The Web
Summative Assessment  - Developing For The Web
Name:
Class:
Strength:
Target:
Reflection:
Read the questions carefully before you answer them. Make sure you look at how
many marks are available for the question. Answer ALL the questions.
Page 1
Year 8 – Developing for the Web Summative Assessment Questions
Q1. The main heading on a web page should be formatted using which tag?
A. <h1>
B. <h2>
C. <b>
D. <u>
A. <h2 style="color:red;">Important</h2>
B. <p style="font-family:courier;">This is a paragraph.</p>
C. <p style="colour:blue;">Think calm thoughts.</p>
D. <h2>So it started on a cold wet Tuesday morning…</h2>
Q5. Which of the following is a benefit of using Cascading Style Sheets (CSS)?
Page 2
Year 8 – Developing for the Web Summative Assessment Questions
Q6. What formatting would the following CSS lines apply to a HTML document?
body {
color: green;
}
Q8. h1 {
text-decoration: underline overline dotted red;
}
A. <h1>Hello</h1>
B. <h1>"Hello
C. {h1}Hello{/h1}
D. <h1>Hello<h1>
Page 3
Year 8 – Developing for the Web Summative Assessment Questions
A. <!DOCTYPE html>
B. <html>
C. <p>
D. <head>
Q12. What defines the beginning and ending of the visible part of a webpage?
A. <Body>
B. <Title>
C. <HTML>
D. <Form>
Part B – 17 Marks
Page 4
Year 8 – Developing for the Web Summative Assessment Questions
Look at each of the questions below relating to your program and complete your
answers in the text
1: Explain the difference between how HTML and CSS are used in creating a web
page.
3: Complete the code below to add CSS to make the background of the web page
orange.
<html>
<head>
Click here to add CSS code
</head>
<body>
<p>Welcome to the CSS guide</p>
</body>
</html>
5: How would you change this line of HTML code to make it responsive?
<img src=“moon.jpg” width=750px>
Page 5
Year 8 – Developing for the Web Summative Assessment Questions
8: Where does the data you enter a web form go and how might it be used?
Page 6