0% found this document useful (0 votes)
35 views2 pages

Program 3

The document provides an HTML code for a computer overview page that includes a table displaying descriptions of input and output devices. The table contains columns for the device type, name, image, and description. It lists the mouse, keyboard, monitor, and printer as examples and includes images and descriptions for each. The page also includes headers, paragraphs of text about computers, and links to external resources for more details.

Uploaded by

kavyashreen3321
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views2 pages

Program 3

The document provides an HTML code for a computer overview page that includes a table displaying descriptions of input and output devices. The table contains columns for the device type, name, image, and description. It lists the mouse, keyboard, monitor, and printer as examples and includes images and descriptions for each. The page also includes headers, paragraphs of text about computers, and links to external resources for more details.

Uploaded by

kavyashreen3321
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Question 3: Create an HTML code for a computer overview that includes a table to

display Input/Output devices descriptions, images, as well as hyperlinks to external


resources.

<!DOCTYPE html>
<html>
<head>
<title>Computer Overview</title>
</head>

<body>
<h1>About Computer</h1>
<p>A computer is a machine that can be programmed to carry out sequences of
arithmetic or logical operations (computation) automatically. Modern digital electronic computers
can perform generic sets of operations known as programs. These programs enable computers to
perform a wide range of tasks. A computer system is a nominally complete computer that includes
the hardware, operating system (main software), and peripheral equipment needed and used for
full operation.</p>

<h2>Input/Output Devices</h2>

<table border="1" cellspacing="0" cellpadding="8">


<tr>
<th>Sl No.</th>
<th>Type</th>
<th>Name</th>
<th>Image</th>
<th>Description</th>
</tr>
<tr>
<td>1</td>
<td>Input</td>
<td>Mouse</td>
<td><img src="mouse.jpg" alt="Wireless Mouse"></td>
<td>A computer mouse is a hand-held pointing device that detects two-
dimensional motion relative to a surface. This motion is typically translated into the motion of a
pointer on a display, which allows a smooth control of the graphical user interface of a computer.</
td>

</tr>
<tr>
<td>2</td>
<td>Input</td>
<td>Keyboard</td>
<td><img src="keyboard.jpeg" alt="Wireless Keyboard"></td>
<td>A computer keyboard is a peripheral input device modeled after the
typewriter keyboard which uses an arrangement of buttons or keys to act as mechanical levers or
electronic switches. </td>
</tr>

<tr>
<td>3</td>
<td>Output</td>
<td>Monitor</td>
<td><img src="monitor.jpeg" alt="LED Monitor"></td>
<td>A computer monitor is an output device that displays information
in pictorial or textual form. A discrete monitor comprises a visual display, support electronics,
power supply, housing, electrical connectors, and external user controls.</td>
</tr>

<tr>
<td>4</td>
<td>Output</td>
<td>Printer</td>
<td><img src="printer.jpeg" alt="Wi Printer"></td>
<td>Printer is a peripheral machine which makes a persistent
representation of graphics or text, usually on paper.[1] While most output is human-readable, bar
code printers are an example of an expanded use for printers.[2] Di erent types of printers include
3D printers, inkjet printers, laser printers, and thermal printers.</td>
</tr>
</table>

<p>For more details visit <a href="https://www.tutorialspoint.com/


computer_fundamentals/index.htm" target="_blank" rel="noopener noreferrer">Tutorials</a>.</p>

<h2>Contact </h2>
<p>Have a question <a href="mailto:emailid"target="_blank" rel="noopener
noreferrer">send me an email</a> </p>

<footer>
<p>&copy; 2023 Computer Details</p>
</footer>
</body>
</html>

Output
fi
ff

You might also like