|
1.5 Marks |
|
Learning Outcome(s): LO1 Identify most HTML tags and CSS properties and use a text editor to construct the basic HTML and CSS structure for a webpage. |
Question One
Write the required HTML tags for displaying the contents marked in the red color below:
|
1 Marks |
|
Learning Outcome(s): LO1 Identify most HTML tags and CSS properties and use a text editor to construct the basic HTML and CSS structure for a webpage |
Question Two
Some of the markup elements in the following code of HTML web page have been incorrectly used according to the specification of HTML. Correct all of them in the code.
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<head>
<body>
<h1>Login form</h1>
<div>
<label>Username:
<input type=”text” name=”user” />
</div>
<div>
<label>Password:</label>
<input type=”password” name=”pass” />
<div>
<div>
<label>Remember me:</label>
<input type=”checkbox” name=”remember” />
</div>
<input type=”submit” value=”login” />
<form>
</body>
</html>
|
1 Marks |
|
Learning Outcome(s): LO1 Identify most HTML tags and CSS properties and use a text editor to construct the basic HTML and CSS structure for a webpage |
Question Three
Write an HTML code that produces the following output when executed in a web browser.
Output:
|
1.5 Marks |
|
Learning Outcome(s): LO1 Identify most HTML tags and CSS properties and use a text editor to construct the basic HTML and CSS structure for a webpage |
Question Four
Write a complete HTML code that produces the following output using the paragraph tags and alignment attributes


0 comments