You are on page 1of 3

ZQMS-ARC-REC-002

ASSIGNMENT COVER
REGION: MASH WEST SEMESTER: 1 YEAR: 2020

PROGRAMME: BACHELOR OF INFORMATION TECHNOLOGY INTAK E: 7

FULL NAME OF STUDEN T: GLADYS MVUVU PIN: P1916117C

EMAIL ADDRESS: gladysdzingwe@gmail.com

CONTACT TELEPHONE/CELL: 0771049130 ID. NO.: 24-126054W24

COURSE NAME: FUNDAMENTALS OF WEB PROGRAMMING COURSE CODE: BSEH


261

ASSIGNMENT NO. e.g. 1 or 2: 1 STUDENT’S SIGNATURE

DUE DATE: 15 March 2020 SUBMISSION DATE: 03 April 2020

ASSIGNMENT TITLE:
Instructions
Marks will be awarded for good presentation and thoroughness in your approach.
NO marks will be awarded for the entire assignment if any part of it is found to be copied directly
from printed materials or from another student.
Complete this cover and attach it to your assignment. Insert your scanned signature.

Student declaration
I declare that:
 I understand what is meant by plagiarism
 The implications of plagiarism have been explained to me by the institution
 This assignment is all my own work and I have acknowledged any use of the published or
unpublished works of other people.

MARK ER’S COMMEN TS:


OVERALL MARK: MARK ER’S NAME:
MARK ER’S SIGNATURE: DATE:

SECTION A

1. HTML means Hyper Text Markup Language. A markup language is a computer language that uses
tags to define elements within a document. The tags mark the text inside them as a certain type of
text. The language is human readable which means the markup files contain standard words.

2. The <emp> tag is a text formatting tag, it purpose is to show an emphasized text.

3. <ol> means ordered list and <ul> means unordered list. The difference between these two is that
in <ol> the list items are marked with numbers and in <ul> the list items are marked with bullets.

4. The tag used to display a picture in an HTML page <img>. To display an image on a page you need
an attribute which is written as src which means source, the value is put in front source. The syntax
of defining an image is <img scr= “url”/> where the url points to the location where the image is
stored.

5. PHP is a programming language that allows web developers to create dynamic content that
interacts with databases. The tags used to enclose PHP scripts is <?php----?>

6. Php.ini file is the default configuration file for running applications that require PHP.

7. The name of the script which is called by the request query string is process php.

8. The correct HTML for referring to an external style sheet is <link rel= “style sheet “type =
“text/css” href = “mystyle.css”>

9. The correct place to refer to an external sheet is in the head section.

10. The correct CSS syntax to set the background color of a web page to powder blue is <body bg
color = “powder blue”>

SECTION B

1. An HTML selector is a pattern of elements and other elements that tell the browser which HTML
elements should be selected to have the CSS properties value inside the rule applied to them. It is
used find the element you want to style.

2. HTML elements are basic units of HTML. They include start tag, content inserted in between and
the close tag. An example is <p> This is web assignment</p>

3. All the elements with class = “center” will be red and will be center aligned. The textcolor and the
textalignment will be affected.
4. A favicon is a small icon that appears at the top of a browser. It serves as a branding for your
website and a convenient way for visitors to locate our page when they have multiple tabs open. It
allows you to have a simple, recognizable picture associated with your website, so users get familiar
with your brand. A favicon is usually 16x16pixels.

<link rel = “shortcut icon” href = “images/coding-html.ico” >

SECTION C

html.zip

You might also like