Practical File ON HTML: Maharshi Dayanand University Rohtak
Practical File ON HTML: Maharshi Dayanand University Rohtak
Practical File ON HTML: Maharshi Dayanand University Rohtak
FILE
ON
HTML
08 PERSONAL BIO-DATA
11 WEB PAGE
12
13
14
15
1.Web-page to change font and background colour.
<html>
<head>
</head>
</body>
</html>
OUTPUT:
2. Web-page using all formating tags.
<html>
<head>
<title>formatting tags</title>
</head>
<body>
File Transfer Protocol (FTP) is the commonly used protocol for exchanging files over the
<DEL>Intranet</DEL> internet.<BR>
FTP<sub>works</sub>in the same way as HTTP for transferring Web pages from a server to
a user's <i>browser</i>browser and SMTP for transferring electronic mail across the
Internet in that, <small>like these technologies.</small>
<BR><BR>
<h2>USE OF FTP</h2>
<sup>FTP </sup><i> is most commonly used to download a file from a server using the
Internet or to upload a <mark>file to a server.s </mark></i><BR>
</body>
</html>
OUTPUT:
3. Time table of mca 1st sem. Using appropriate tags.
<html>
<head>
<title>time table</title>
</head>
<tr>
<td align="center">
<td>9:00-10:00
<td>10:00-11:00
<td>11:15-13:15
<td>13:15-14:15
<td>14:15-15:15
<td>15:15-16:15
</tr>
<tr>
<td align="center">MONDAY
<td align="center">LAB<br>
<td rowspan="6"align="center">L<br>U<br>N<br>C<br>H<br>
<td align="center">C++<br>
<td align="center">MATHS<br>
</tr>
<tr>
<td align="center">TUESDAY
<td align="center">C<br>
<td align="center">DD<br>
<td align="center">LAB<br>
<td align="center">C++<BR>
<td align="center">MATHS<br>
</tr>
<tr>
<td align="center">WEDNESDAY
<td align="center">C<br>
<td align="center">DD<BR>
<td align="center">LAB<br>
<td align="center">HTML<BR>
<td align="center">MATHS<br>
</tr>
<tr>
<td align="center">THURSDAY
<td align="center">C<br>
<td align="center">HTML<br>
<td align="center">LAB<BR>
<td align="center">C++<br>
<td align="center">MATHS<br>
</tr>
<tr>
<td align="center">FRIDAY
<td align="center">HTML<BR>
<td align="center">C++<br>
<td align="center">LAB<br>
<td colspan="2"align="center">
</tr>
<tr>
<td align="center">SATURDAY
<td align="center">HTML<br>
<td align="center">C++<br>
<td align="center">LAB<br>
<td colspan="2"align="center">
</tr>
</body>
</html>
OUTPUT:
4. Web-page illustration all heading tags.
<html>
<head>
<title>heading tags</title>
</head>
<body>
<h1>BUS TOPOLOGY</h1>
In networking a bus is the central cable -- the main wire -- that connects all devices on a
local-area network (LAN).
<h2>MESH TOPLOGY</h2>
In a mesh network, devices are connected with many redundant interconnections between
network nodes.
<h4>TREE TOPOLOGY</h4>
This is a "hybrid" topology that combines characteristics of linear bus and star topologies.
</body>
</html>
OUTPUT:
5. Insert picture in a web-page.
<html>
<head>
<title>PICTURE</title>
</head>
<body>
</body>
</html>
OUTPUT:
6. Internal and external linking.
<html>
<head>
<title>links</TITLE>
</head>
<body>
</BODY>
</HTML>
OUTPUT:
7. List of books by using list tags.
<html>
<head>
<title>list of books</title>
<body>
<ol>
</ol>
</ol>
</ol>
</ul>
</head>
</html>
OUTPUT:
8.Personal bio-data by using table tag and using
concept of rowspan and Colspan.
<html>
<head>
<title>bio data</title>
<h5><u>MYSELF</u></h5>
ROLL NO = 18105<br>
<h5><u>ACADEMICS</h5></u>
UNDERGRADUATION = B.SC<br>
<h5><u>HOBBIES</h5></u>
</body>
</head>
</html>
OUTPUT:
9. Form (Student Form) in html.
<html>
<head>
<title>form </title>
</head>
<body>
<hr>
<form><font size="5">
<table>
Description :<br>
</textarea><br><br>
<input type="checkbox"name="Math"value="on">Math
<input type="checkbox"name="Physic"value="on">Physic
<input type="checkbox"name="English"value="on">English
<input type="checkbox"name="computer"value="on">Computer<br><br>
<select name="dropdown">
</select><br><br>
<tr>
<td><input type="reset"></td>
</tr>
</table>
</font>
OUTPUT:
10. Frames in html.
<html>
<head>
<title>HTML Frames</title>
</head>
</frameset>
</html>
OUTPUT:
11. Web-page using all formatting-tags in html with
CSS.
<HTML>
<HEAD>
</HEAD>
<div class="topnav">
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
<hr>
<table>
<tr>
<td><BLOCKQUOTE><b>SYLLABUS</b></BLOCKQUOTE><BR>
<BLOCKQUOTE><select></BLOCKQUOTE>
<option value="bca">BCA</option>
<option value="b.tech">B.TECH</option>
<option value="bsc">BSC</option>
<option value="Mca">MCA</option>
<option value="M.tech">M.TECH</option>
<option value="Msc">MSC</option>
</select><BR>
<BR>
<BLOCKQUOTE><b>IMAGE GALLERY</b></BLOCKQUOTE><BR>
<BLOCKQUOTE><select></BLOCKQUOTE>
<td><style>
.vl {
height: 500px;
</style>
<div class="vl"></div>
</BODY>
</HTML>
OUTPUT: