SECTION A: ANSWER ALL THE QUESTIONS (Each Question Carry 5 Marks)
SECTION A: ANSWER ALL THE QUESTIONS (Each Question Carry 5 Marks)
LEVEL: SENIOR 5
TERM: 1st
TIME: 3HOURS
_____________________________________________________________________________
INSTRUCTION:
______________________________________________________________________________
1. Create html identification form that form contain name, surname age, status
,comment. you will check if is a student. that form, will built with tables.
2. Write the HTML codes to give the following output:
Page 2
ANSWER SHEET OF WEB DESIGN S5
1. The web is not synonymous with the Internet,, the web is a application of the Internet.
2. An Intranet is a mini web that is limited to the users, machines, and software programs
of a specific organization.
3. The instructions should follow a stringent set of guidelines.
The instructions should be included in the textual document.
The instructions should be invisible to the end user.
4. Hypertext Markup Language (HTML) is responsible for telling a Web browser how text
and other objects in a Web document should appear.
5. HTML is simply a 'markup language' used to define a logical structure rather than
compute anything.
6. The most important difference between the two markup languages is that HyperText
Markup Language, or HTML, is an application of SGML (Standard Generalized Markup
Language),1 and allows an author to omit certain tags and use attribute minimization.2
The Extensible HyperText Markup Language, or XHTML, is an application of XML
(Extensible Markup Language).3 It doesn’t permit the omission of any tags or the use of
attribute minimization. However, it provides a shorthand notation for empty elements—
for example, we could use <br/> instead of <br></br>—which HTML does not.
7. HTML TAGS are instructions used to format a web page content.
These instructions are delimited. This means that they are enclosed in angle
brackets — more commonly known as ‘‘less than’’ and ‘‘greater than’’ signs ( < and > ).
The beginning marks contains a keyword corresponding to what the markup should
accomplish. The ending mark includes a slash(/).
8.<html>and <body>
9. This tag declared the language and programmer to apply to our page. This
declaration submits our page to W3C(World Wide Web Consortium) validator, which
Page 3
verifies whether our HTML codes do not present any error (like unclosed tags, inexisting
attributes etc..), depending upon the chosen DTD(Document Type Definition).
10. paired tags: The paired Tags are colled Open/Close tags meaning that they are
always in a pair of tags one opening and the other one closing. They can contain other
tags inside or a text.
The opening tag is similar to the closing tag except the “/” indicating the closing area.
• Unpaired tags: They are called again Empty Tags, meaning that they do not contain any
other HTML tag. They don’t need to be closed.
11.what is intranet
An Intranet is a mini web that is limited to the users, machines, and software programs of a
specific organization.
Value Description
current structure
Page 4
2. BMP
The BMP file format (Windows bitmap) handles graphics files within the Microsoft Windows OS.
JPEG
JPEG is used by DOS. Other operating systems may use JPEG. JPEG (Joint
Photographic Experts Group) is a compression method. The images using that format are
usually stored in the JFIF (JPEG File Interchange Format) file format.
GIF
GIF (Graphics Interchange Format) is limited to an 8-bit palette, or 256 colors. This makes the GIF
format suitable for storing graphics with relatively few colors such as simple diagrams, shapes,
logos and cartoon style images.
PNG
The PNG, (Portable Network Graphics) file format was created as the free, open-source
successor to the GIF.
3.adventages
2. There are also aesthetic considerations involved that come down to a matter of personal taste.
3. Some viewers would rather see nothing at all than look at the temporary visual chaos an
interlaced GIF creates. For these reasons, you may choose to limit interlacing to instances when
it makes sense, such as for large imagemaps, instead of using it for every small graphic on a
page.
3. LAW (.au)
5. MIDI (.mid)
The built-in GET function is used to collect values from a form sent with method="get".
Information sent from a form with the GET method is visible to everyone (it will be displayed in
the browser's address bar) and has limits on the amount of information to send (max. 100
characters).
The built-in POST function is used to collect values from a form sent with method="post".
Information sent from a form with the POST method is invisible to others and has no limits on
the amount of information to send.
1. <td><label>
</label></td>
</tr>
Page 6
<tr>
<td>female</td>
<td><label>
</label></td>
</tr>
<tr>
<td>comment</td>
<td><label>
<textarea name="textarea"></textarea>
</label></td>
</tr>
<tr>
<td>still student?</td>
<td><label>
</label></td>
</tr>
</table>
<p>
Page 7
<label>
</label>
</form>
</body>
</html>
2.Write the HTML codes to give the following output:
<html>
<body>
<table border=2>
<tr>
<td><label>Name</label></td>
<td><input type="text"></td>
</tr>
<tr>
<td><label>Age</label></td>
<td><input type="text"></td>
</tr>
<tr>
<td><input type="submit" value="Send"></td>
</tr>
</table>
</body>
</html>
Page 8