COMPUTER FILE
COMPUTER FILE
PRACTICAL FILE
OF
HTML
<head>
</head>
<body>
HELLO WORD
THE FASTEST LAP FINISHED IN F1 HISTORY AT SPEED OF 164.267 MPH BY LEWIS HAMILTON IN
ITALIAN GP MONZA IN YEAR 2020
PORSCHE'S NEW 919 HYBRID EVO LE MANS CAR IS FASTER THAN AN F1 CAR
</body>
</html>
OUTPUT
HEADING TAG
<html>
<head>
</head>
<body>
</body>
</html>
PARAGRAPH TEXT
<html>
<head>
</head>
<body>
<p align=left>the tag is used to define a paragraph. The paragraph can be aligned to the
left,right,entr,or justify using the align attributes.</p>
<p align=right>the tag is used to define a paragraph. The paragraph can be aligned to the
left,right,entr,or justify using the align attributes.</p>
<p align=center>the tag is used to define a paragraph. The paragraph can be aligned to the
left,right,entr,or justify using the align attributes.</p>
</body>
</html>
HORIZONTAL RULES TAG
<html>
<head>
</head>
<body>
The tag is used to produce a horizontal line spread across the width of the browser window.
This is an empty tag.<hr>
The tag is used to produce a horizontal line spread across the width of the browser
window<br>This is an empty tag.<hr>
The tag is used to produce a horizontal line having size of 36 pixels.<hr sze=36>
The tag is used to produce a horizontal line having size of 36 pixels with no shde.<hrsze=36
noshade>
The tag is used to produce a horizontal line having size of 36 pixels with no shade and width
50%.<hr sze=36 noshade width=50%>
</body>
</html>
TEXT STYLES
<html>
<head>
</head>
<body>
</body>
</html>
MARQUEE ATTRIBUTES
<html>
<head>
</head>
<body><marquee width="100%"behaviour="scroll"bgcolor="yellow">
</marquee>
</body>
</html>
TEXT FORMATTING
<html>
<head>
</head>
<body bgcolor=yellow>
</body>
</html>
EXTERNAL LINKING
<html>
<head>
</head>
<body>
</body>
</html>
<head>
</head>
<body>
<center>
programming in c <br>
programming in c++<br>
</center>
</body>
</html>
INTERNAL LINKING
<html>
<head>
</head>
<body>
<center>
chapter1<br><br>
chapter2<br><br>
chapter4<br><br>
chapter5<br><br>
chapter6<br><br>
</center>
<ahref="#c3">go to chapter3</a>
</body>
</html>
PAGE LAYOUT
<html>
<head>
</head>
<body backgound=flower.jpg>
link list<br><br>
array<br><br>
</body>
</html>
LISTS
ORDERED AND UNORDERED LISTS
<html>
<head>
<title>List demo</title>
</head>
<body>
<ol type=A>
<li>coffee</li>
<li>tea</li>
<li>milk<li>
</ol><br><br>
<ol type=5>
<li>coffee</li>
<li>tea</li>
<li>milk</li>
</ol><br><br>
<ol type=i>
<li>coffee</li>
<li>tea</li>
<li>milk</li>
</ol><br><br>
<li>coffee</li>
<li>milk</li>
<li>tea</li>
</ul>
</body>
</html>
DEFINITION LIST
<html>
<head>
</head>
<body>
<dl>
<dt>COMPUTER
<dd>computer is an electronic device which takes input,process it and give the output
<dt>HTML
<dd>HTML stands for hypertext markup language. HTML is the language used for creating
webpages.
</body>
</html>
NESTED LIST
<html>
<head>
<title>list demo</title>
</head>
<body>
<ol type=1>
<li>Input Devices
<ul type=circle>
<li>Keyboard
<li>Mouse
<li>Lightpen
</ul><br><br>
<ul type=circle>
<li> Moniter
</ul><br><br>
</ol><br><br>
</body>
</html>
TABLES
<html>
<head>
<title>TABLE demo</title>
</head>
<body>
<center>
<caption align=bottom>
<b>Marks Detail</b>
</caption>
<tr>
<th>Name</th>
<th>class</th>
<th>Marks</th>
</tr>
<tr align=center>
<td>Kajal</td>
<td>BBA</td>
<td>99</td>
</tr>
<tr align=center>
<td>Muskan</td>
<td>BBA</td>
<td>99</td>
</tr>
<tr align=center>
<td>Chehak</td>
<td>BBA</td>
<td>99</td>
</tr>
<tr align=center>
<td>Yojna</td>
<td>BBA</td>
<td>99</td>
</tr>
<tr align=center>
<td>Sneha</td>
<td>BBA</td>
<td>99</td>
</tr>
<tr align=center>
<td>Deepali</td>
<td>BBA</td>
<td>99</td>
</tr>
<tr align=center>
<td>Samreen</td>
<td>BBA</td>
<td>99</td>
</tr>
</table>
</center>
</body>
</html>
FORMS
<html>
<head>
</head>
<body>
<form>
NAME<input type="text"name="text",size="30"><br><br>
</form>
</body>
</html>
PASSWORD FIELD
AND
CHECKBOX FIELD
<html>
<head>
</head>
<body>
<form>
<br><br>
</form>
<form>
cricket<br><br>
football<br><br>
hockey<br><br>
</form>
</body>
</html>
RADIO BUTTON,
SUBMIT
AND RESET BUTTON
<html>
<head>
<title>Forms demo</title>
</head>
<body>
<form>
<select name="qul">
<option value="10th">10th
<option value="12th">12th
<option value="bca">bca
<option value="mca">mca
</form>
</body>
</html>