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

HTML SOP Solutions for 11th Grade

This document contains details for 4 SOP assignments on web design using HTML. SOP1 requires creating a webpage with a green background, red text, a large heading, and displaying name, address, and standard. SOP2 requires adding an image with alternate text, paragraph on a scientist, and table of inventions. SOP3 requires a form to input name and select standard. SOP4 requires a table with student details and a link to another page with additional class details.

Uploaded by

muthusudalai742
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)
869 views8 pages

HTML SOP Solutions for 11th Grade

This document contains details for 4 SOP assignments on web design using HTML. SOP1 requires creating a webpage with a green background, red text, a large heading, and displaying name, address, and standard. SOP2 requires adding an image with alternate text, paragraph on a scientist, and table of inventions. SOP3 requires a form to input name and select standard. SOP4 requires a table with student details and a link to another page with additional class details.

Uploaded by

muthusudalai742
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
  • SOP 1 - Web Designing
  • SOP 2 - Web Designing
  • SOP 3 - Web Designing
  • SOP 4 - Web Designing
  • Demo HTML Page

Name:

Roll No:

Seat No:

Standard:

Division :

SOP No: 1, 2, 3 & 4

Signature:
SOP 1: Write a program using HTML with following specifications.
• The background colour should be green.
• The text colour should be red.
• The heading should be large in size as 'My First Web Page'.
• Display a horizontal line after the heading.
• Display your name in Bold, address in Italics and standard as 11th.

Filename: [Link]

<!doctype html>
<html>
<head>
<title>
SOP 1 - Web Designing
</title>
</head>

<body bgcolor="lightgreen" text="red">


<h1>My First Web Page</h1>
<hr color="yellow">
<b> Name : Michelle Fernandes </b><br><br>
<i> Address : Bright High School and Junior College, Village
Road, Bhandup-w, Mumbai-400 078</i><br><br> Standard :
11 <sup>th</sup>
</body>
</html>

Output :
SOP 2 : Create a web page with, following specification.
• Image of any scientist with an alternate text as his name.
• Create a paragraph related to information of that scientist.
• Create a table of his/her inventions.

Filename : [Link]

<!doctype html>
<html>
<head>
<title>
SOP 2 - Web Designing
</title>
</head>

<body bgcolor="skyblue">
<h1 align="center">Dr. A.P.J Abdul Kalam</h1>
<hr>
<img src="[Link]" height="300" width="300" alt="Dr. Abdul
Kalam photo" align="right">
<p>
Dr. APJ Abdul Kalam is a famous name in the whole world. He is counted
among the greatest scientists of the 21st century. Even more, he becomes the 11th
president of India and served his country. He was the most valued person of the country
as his contribution as a scientist and as a president is beyond compare.
</p>
<p>
Apart from that, his contribution to the ISRO (Indian Space Research
Organization) is remarkable. He headed many projects that contributed to the society also
he was the one who helped in the development of Agni and Prithvi missiles. For his
involvement in the Nuclear power in India, he was known as “Missile Man of India”.
And due to his contribution to the country, the government awarded him with the highest
civilian award.
</p>
<table border="2" align="center">
<caption>Inventions</caption>
<tr>
<th>[Link]</th>
<th>Invention</th>
</tr>
<tr>
<td>1</td>
<td>Kalam Raju Stent</td>
</tr>
<tr>
<td>2</td>
<td>Kalam Raju Tablet</td>
</tr>
<tr>
<td>3</td>
<td>Lightweight Calipers</td>
</tr>

</table>
</body>
</html>

Output :
SOP 3 : Create a webpage with following specification.
• Display heading 'Application Form' in highest heading with center
alignment.
• Accept name, standard 11th or 12 th with only one selection choice.
• Submit the form.

Filename: [Link]

<!doctype html>
<html>
<head>
<title>
SOP 3 - Web Designing
</title>
</head>

<body>
<h1 align="center"> Application Form</h1>
<form name="form1">
Enter your name :<input type="text" name="t1" maxlength="20"><br><br>
Select Standard :
<input type="radio" name="r1">11<sup>th</sup>
<input type="radio" name="r1">12<sup>th</sup><br><br>
<input type="submit" value="submit">
</form>
</body>
</html>

Output:
SOP 4 : Write a program using HTML with the following specification.
• A webpage with details about a class with total number of students-100, (Boys-
50), Girls- 50 in tabular form.
e.g.

• Link this page to another page as follows.

Filename: [Link]
<!doctype html>
<html>
<head>
<title>
SOP 4 - Web Designing
</title>
</head>

<body>
<table border="1">
<tr bgcolor="orange">
<th>Number of Students</th>
<th>Boys</th>
<th>Girls</th>
</tr>
<tr bgcolor="lightgreen">
<td>100</td>
<td>50</td>
<td>50</td>
</tr>
</table>
<br>
<a href="[Link]">Click here</a>
</body>
</html>
Filename : [Link]

<html>
<head>
<title>
Page 2
</title>
</head>

<body>
<table border="1">
<tr>
<td>
<b>STD - XI</b>
<br><br>
<b><i> Stream - Science</i></b>
<br><br>
<u>Div - A</u>
<br><br>
</td>
</tr>
</table>
</body>
</html>
Output:
[Link]
[Link]

Name:  
Roll
SOP 1: Write a program using HTML with following specifications. 
• The background colour should be green. 
• The text colour
SOP 2 : Create a web page with, following specification. 
• Image of any scientist with an alternate text as his name. 
• Cre
<tr>  
<td>2</td> 
<td>Kalam Raju Tablet</td>  
</tr>  
<tr>  
<td>3</td>  
<td>Lightweight Calipers</td>  
</tr>  
</table>
SOP 3 : Create a webpage with following specification. 
• Display heading 'Application Form' in highest heading with center
SOP 4 : Write a program using HTML with the following specification. 
• A webpage with details about a class with total numbe
Filename : demo.html  
<html>  
<head>  
<title>  
Page 2  
</title>  
</head>  
<body>  
<table border="1">  
<tr>  
<td>
demo.html

You might also like