Sei sulla pagina 1di 10

Nigel gwati

Nd3 I.T

Question 1 (a)

<html>

<head></head>

<body>

While HTML is the primary language for authorizing web pages, it is limited to creating static
websites. This are more like internet brochures in that they consist of colourful pictures and text
for display on the internet. A long time ago such a website will surface as an organisations
imprint on the web. However, improvements in web development technologies as well as the
changing tastes of website users, have resulted in the advent of more interactive and dynamic
web pages that consists of not only pictures and text, but also animation and other forms of
multimedia. The primary technology that is used to achieve this, is scripting. This is the use of
light weight programming languages to add both functionality and interactivity to an otherwise
plain webpage. Such language is called scripting languages. Examples Java Script, PHP and
ASP. These languages are usually embedded in the normal HTML documents that make up the
website.

</body>

</html>

Output :
Nigel gwati
Nd3 I.T

Question (1b)

<html>
<head></head>
<body>
<p><font size="5" face="Courier New" >
<font face="Courier New"><h1><u>Adding interactivity To Your
website</u></h1></font>
<hr>
While HTML is the primary language for authorizing web pages, it is limited to creating static
websites.This are more like internet brochures in that they consist of colorful pictures and text
for display on the internet. A long time ago such a website will surface as an organisations
imprint on the web. However, improvements in web development technologies as well as the
changing tastes of website users, have resulted in the advent of more interactive and dynamic
web pages that consists of not only pictures and text, but also animation and other forms of
multimedia.<br> The primary technology that is used to achieve this, is scripting. This is the use
of light weight programming languages to add both functionality and interactivity to an
otherwise plain webpage. Such language are called scripting languages.
<ol>Example
<li>Java Script</li>
<li>PHP</li>
<li>ASP</li>
</ol>
</font>
</p>
</body>
</html>
Nigel gwati
Nd3 I.T

Output :

Question 2

<html>
<head>
</head>
<body>
<form><table border="2" rules="none" cellpadding="23">
<tr>
<th colspan="2"><h2>NAME BUILDER</h2></th>
</tr>
<tr>
<td><label>FIRST NAME</label></td>
<td><input type="text" id="firstname"></td>
</tr>
<tr><td><label>SECOND NAME</label></td>
<td><input type="text" id="ssurname"></td>
</tr>
<tr><td><label>FULL NAME</label></td>
<td><input type="text" id="fullname"></td>
</tr>
<tr><td colspan="2" align="center"><input type="button" value="show
fullname"onclick="fullname.value = "firstname + surname"" ></td>
</tr>
</table>
</form>
</body>
</html>
Nigel gwati
Nd3 I.T

Output :

Question 3 (a)

<html>
<head>
<title>Question 3</title>
</head>
<body>
<table width="1000px" cellspacing="8" cellpadding="4">
<tr>
<td>Product</td>
<td>Price</td>
<td>Availability</td>
</tr>
<tr>
<td>Hardware</td>
<td>$80</td>
<td>Available</td>
</tr>
<tr>
<td>LCDs</td>
<td>$4</td>
<td>Available</td>
</tr>
<tr>
<td>Memory Sticks</td>
<td>$4.25</td>
<td>Out Of Stock</td>
</tr>
Nigel gwati
Nd3 I.T

<tr>
<td>Bond Paper</td>
<td>$1 for 3</td>
<td>Available</td>
</tr>
<tr>
<td>DVD</td>
<td>$10</td>
<td>Out Of Stock</td>
</tr>
</table>
</body>
</html>

Output:

Question (3 b)

<html>
<head>
<title>Question 3</title>
</head>
<body>
<table width="1000px" cellspacing="8" cellpadding="4" border="10">
<tr>
<th colspan="3"><h3> Computer Consumables</h3></th>
</tr>
<tr bgcolor="red">
<td><b><u>Product</u></b></td>
<td><b><u>Price</u></b></td>
Nigel gwati
Nd3 I.T

<td><b><u>Availability</u></b></td>
</tr>

<tr>
<td>Hardware</td>
<td>$80</td>
<td>Available</td>
</tr>
<tr>
<td>LCDs</td>
<td>$4</td>
<td>Available</td>
</tr>
<tr>
<td>Memory Sticks</td>
<td>$4.25</td>
<td>Out Of Stock</td>
</tr>
<tr>
<td>Bond Paper</td>
<td>$1 for 3</td>
<td>Available</td>
</tr>
<tr>
<td>DVD</td>
<td>$10</td>
<td>Out Of Stock</td>
</tr>
</table>
</body>
</html>

Output :
Nigel gwati
Nd3 I.T

Question 4

<html>
<head>
</head>

<body>
<form align="center">
<table border="4" rules="none" cellpadding="8">
<tr>
<th colspan="2"><h2>CREDIT LOAN APPLICATION</h2></th>
</tr>
<tr>
<td><label>FIRST NAME:</label></td>
<td><input type="text" id="firstname"></td>
</tr>
<tr>
<td><label>SECOND NAME:</label></td>
<td><input type="text" id="surname"></td>
</tr>
<tr>
<td><label>FULL NAME:</label></td>
<td><input type="text" id="fullname"></td>
</tr>
<tr>
<td><label>ADDRESS:</label></td>
<td><textarea cols="53" rows="5"></textarea></td>
</tr>
<tr><td><label>LOAN TYPE:</label></td>
<td>
<select name="Loan Type">
<option>Personal</option>
<option>small</option>
<option>Corperate</option>
</select>
</td>
</tr>
<tr>
Nigel gwati
Nd3 I.T
<td><label>AMOUNT:</label></td>
<td>
<select name="amount" size="3">
<option>$1000</option>
<option>$2000</option>
<option>$3000</option>
</select>
</td>
</tr>
<tr>
<td><label>PAYBACK:</label></td>
<td>
<input type="checkbox" name="payback" value="6 months">6 months<br>
<input type="checkbox" name="payback" value="1year">1 year<br>
<input type="checkbox" name="payback" value="3years">3 years<br>
</td>
</tr>
<tr>
<td>
<input type="submit" name="btnsubmit" value="save">
<input type="reset" name="btncancel" value="Cancel">
</td>
</tr>
</table>
</form>
</body>
</html>
Nigel gwati
Nd3 I.T

Output :

Question 5

<html>
<head>
<title>
</title>
</head>
<body>
<ol>
<li>National Certificate
<ul type="disc">
<li>Computer Operations and Packages</li>
<li>Programming Using C++</li>
<li>Principals of Accounts</li>
</ul>
</li>
<li>National Diploma
<ol type="i">
<li>Internet and Web Design</li>
Nigel gwati
Nd3 I.T
<li>Data Structures Using C++</li>
<li>Software Projects</li>
</ol>
</li>
<li>Higher National Diploma
<ol type="a">
<li>Operations Research</li>
<li>Information Systems</li>
<li>Visual C++</li>
</ol>
</li>
</ol>
</body>
</html>

Output :

Potrebbero piacerti anche