0% found this document useful (0 votes)
2 views5 pages

HTML Output Printout

The document contains multiple HTML programs showcasing different web pages. The first program is a simple webpage with personal information, the second displays a profile of Satyendra Nath Bose with a table of contributions, and the third is an application form. The last section includes two linked HTML files, one displaying a table of student demographics and the other serving as a link to the first file.
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)
2 views5 pages

HTML Output Printout

The document contains multiple HTML programs showcasing different web pages. The first program is a simple webpage with personal information, the second displays a profile of Satyendra Nath Bose with a table of contributions, and the third is an application form. The last section includes two linked HTML files, one displaying a table of student demographics and the other serving as a link to the first file.
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

Program:

<html>
<head><title>1st program</title></head>
<body bgcolor="Green"text="red">
<h1> My First web Page</h1>
<hr color="black"size="25"width="100%">
<b>John Doe</b><br>
<i>Talegaon Dabhade,Tal: maval,Dist:Pune.</i><br>
Standard: 11<sup>th</sup><br>
</body></html>

Output:
Program:

<html>
<head><title>Satyadranath Bose</title></head>
<body bgcolor="Pink">
<h3 align="center">Satyadranath Bose</h1>
<h4 align="center">
<img src="Satyendra Nath [Link]"height="200"width="200"alt="satyandra nath bose"></h1>
<p> A paragraph here </p>
<br>
<br>
<table border="10">
<tr> <th>Sr.
<th>Subject
<th>Field Contribution
</tr>
<tr> <td rowspan="2">1
<td rowspan="2">mathematics
<td>statistical mechanism
</tr>
<tr> <td>quantum statistics
</tr>
<tr> <td rowspan="2">2
<td rowspan="2">Physics
<td>All forces
</tr>
<tr> <td>Electromagnetic Waves
</tr>
</table>
</body>
</html>

Output:
Program:

<html>
<head><title>form </title></head>
<body bgcolor="lavender">
<h1 align="center">Application Form</h1>
<form method="post" action="[Link]">
First Name:<input type="text" name="f1"><br>
Last Name:<input type="text" name="l1"><br>
Address:<textarea name="address" rows="5" cols="10"></textarea><br>
Gender:<input type="radio" name="gen" value="male">Male
<input type="radio" name="gen" value="female">Female<br><br>
optional subjects<input type="checkbox"name="ch1" value="maths">maths
<input type="checkbox" name="ch2"value="biology">biology<br>
Choose the City:
<select name="a1">
<option>Pune</option>
<option>Talegaon dabhade</option>
<option>Chinchwad</option>
<option>Mumbai</option>
</select>
<br>
<input type="reset" value="clear">
<input type="submit" value="Submit"><br>
</form></body>
</html>

Output:
Program

First File
//[Link]
<!doctype html>
<html>
<head><title>table</title></head>
<body bgcolor="lavender">
<Caption>Div-A</caption>
<Table border="10">
<tr bgcolor="green">
<th>Number Of Students
<th>Boys
<th>Girls
</tr>
<tr bgcolor="pink">
<td>100
<td>50
<td>50
</tr>
</table>
<a href="[Link]">click here</a>
</body></html>

Second File
//[Link]
<!doctype html>
<html>
<head>
<title>linking program</title>
</head>
<body>
<h1><b>STD-A <br>
Stream-Science</b></h1>
<a href="[Link]">Div-A</a>
</body>
</html>
Output:

You might also like