0% found this document useful (0 votes)
36 views8 pages

WT Lab (1-3 Progs)

The document contains HTML programs to display faculty details of an ECM department in a table with photos, create a simple web page with colors and fonts, and demonstrate links and images. It includes code to output faculty names, designations, salaries, and photos in a table and code for a web page header linking to a college website and including an image.

Uploaded by

Xyz 1234SBC
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)
36 views8 pages

WT Lab (1-3 Progs)

The document contains HTML programs to display faculty details of an ECM department in a table with photos, create a simple web page with colors and fonts, and demonstrate links and images. It includes code to output faculty names, designations, salaries, and photos in a table and code for a web page header linking to a college website and including an image.

Uploaded by

Xyz 1234SBC
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/ 8

WT lab 20311A19C6

3) Write a HTML program to print details of all faculty members in ECM dept.

Program:

<body><center><b><caption>FACULTY OF ECM dept.</caption></b></center>

<table border="1" align="center" bgcolor=yellow cellpadding="15" cellspacing="1" >

<tr align="center">

<th>faculty name</th>

<th>designation</th>

<th>salary</th>

<th>photo</th>

</tr>

<tr>

<td>kusumalatha</td>

<td>assistant professor</td>

<td>100000</td>

<td> <img src = "https://hips.hearstapps.com/hmg-prod/images/gettyimages-590634523-2-


1493049119.jpg?crop=0.669xw:1.00xh;0.259xw,0&resize=640:*"

width="100" height="100"> </td>

</tr>

<tr>

<td>arunakumari</td>

<td>assistant professor</td>

<td>50000</td>

<td> <img src = "https://encrypted-


tbn0.gstatic.com/images?q=tbn:ANd9GcSAHp9pMKtd6hcOgyQIlG0fz5tUZ4CU_2gI0A&usqp
=CAU"
WT lab 20311A19C6

width="100" height="100"> </td>

</tr>

<tr>

<td>naga shailaja</td>

<td>assistant professor</td>

<td>200000</td>

<td> <img src = "https://encrypted-


tbn0.gstatic.com/images?q=tbn:ANd9GcQ4N6W92xIY_qqYzwjxSuZjbQHOrPhr7sOQmw&usq
p=CAU"

width="100" height="100"> </td>

</tr>

<tr>

<td>dayakar</td>

<td>assistant professor</td>

<td>200000</td>

<td> <img src = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSSLjavKIgs-


H4bH99_bO4WygiFAG0aiSb3A&usqp=CAU"

width="100" height="100"> </td>

</tr>

<tr>

<td>vinay kumar</td>

<td>assistant professor</td>

<td>175000</td>

<td> <img src = "https://encrypted-


tbn0.gstatic.com/images?q=tbn:ANd9GcRlbxwaeDzIsZf7KzUqEHT4P8ikzAkKtBJB-
Q&usqp=CAU"

width="100" height="100"> </td>


WT lab 20311A19C6

</tr>

<tr>

<td>sreelatha</td>

<td>assistant professor</td>

<td>150000</td>

<td> <img src = "https://encrypted-


tbn0.gstatic.com/images?q=tbn:ANd9GcSefdQfM6ZNihgghV7IGLORhw5aG5XzQ2kDxQ&usq
p=CAU"

width="100" height="100"> </td>

</tr>

<tr>

<td>srinivasa rao</td>

<td>assistant professor</td>

<td>150000</td>

<td> <img src = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT8dL0uu7z-


Ri9R_hz0L9Mfb01fUiJ0WrLy0A&usqp=CAU"

width="100" height="100"> </td>

</tr>

<tr>

<td>mohan</td>

<td>associate professor</td>

<td>250000</td>

<td> <img src = "https://encrypted-


tbn0.gstatic.com/images?q=tbn:ANd9GcRZDBUHvYKR94CD8smI3GhrA_RJij3HEZcjkw&usq
p=CAU"

width="100" height="100"> </td>

</tr>
WT lab 20311A19C6

<tr>

<td>padmavathi</td>

<td>associate professor</td>

<td>240000</td>

<td> <img src = "https://encrypted-


tbn0.gstatic.com/images?q=tbn:ANd9GcSKjDNt7zyYjtd5FqVxw3RMD57ODkKr3F8bAQ&usq
p=CAU"

width="100" height="100"> </td>

</tr>

<tr>

<td>venkataramana</td>

<td>associate professor</td>

<td>220000</td>

<td> <img src = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSojfGrc4C7h-


ByZ0HA9v6KaZpF416qTdAymg&usqp=CAU"

width="100" height="100"> </td>

</tr>
WT lab 20311A19C6

1) Creating a simple HTML web page

Program:

<!DOCTYPE HTML>

<html>

<head>

<title>My First HTML Page</title>

</head>

<body bgcolor = "pink">

<h2 align = "center">Sreenidhi Institute of Science and Technology

<hr size=15 noshade align= "center" width=65%>

<I> Department of ECM </I>

<p align= "center"><fontface= "Arial"> Welcome to SNIST ECM Dept. established in

1998</font></p>

</h2>

</body>

</html>
WT lab 20311A19C6

2) write a program to demonstrate links and images.

Program:

<html>

<head>

<title>SNIST</title> </head>

<body>

<h1>About Snist 19C6</h1>

<p> <a href="https://www.sreenidhi.edu.in/"snist</a></br></h1>

<IMG SRC="snist.jpg" align="left" border="50" width="250" height="200"> </p>

</html>
WT lab 20311A19C6
WT lab 20311A19C6

You might also like