IT 404 (4)
|
Pg. 01 |
|
Question One |
|
|
|
|
Assignment 3
Deadline: Day 02/12/2017 @ 23:59
[Total Mark for this Assignment is 5]
Web Design
IT 404
College of Computing and Informatics
|
|
|
|
|
|
|
|
Question One
1 Mark
Learning Outcome(s):
· Define the benefits and power of CSS.
Explain the benefit and the position of CSS in relation to HTML.
Answer:
Question Two
1 Mark
Learning Outcome(s):
Attach styles to the HTML document.
Explain and give an example for the different possibilities of attaching styles to the HTML document.
Answer:
Question Three
1.5 Marks
Learning Outcome(s):
Formatting Text, Color and Background.
Add the style needed to obtain the following characteristics in the given HTML page.
· Set the text color for the page to "red", and the text color for <h1> to "blue".
· Center align the <h1> element.
· Remove the underline from the link.
· Style text in <h1> to uppercase letters, and text in <p> to capitalized letters.
· Indent the <p> element with 20px.
· Set the font family for the page to "Courier New", and the font family for <h1> to "Verdana".
· Show <p> elements as "italic" text.
· Set the background color for the page to "linen" and the background color for <h1> to "lightblue".
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
Answer:
Question Four
1.5 Marks
Learning Outcome(s):
Page Layout with CSS
Explain the different page layout strategies and give an example from each one.