Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions

Download MSBSHSE Solutions for Class 11 Information Technology Set 2 Web Designing HTML 5

Explore reliable textbook solutions for Set 2 Web Designing HTML 5 tailored for Class 11 learners. Utilizing these Information Technology answers ensures thorough preparation and strengthens foundational knowledge before final MSBSHSE evaluations.

Access MSBSHSE Solutions and Answers

Access the complete solution PDF for Class 11 Information Technology below. Regular practice with these targeted textbook answers builds familiarity with standard question patterns and helps secure higher marks in final school evaluations.

Question. SOP 1: Write a program using HTML with the following specifications.
• The background colour should be green.
• The text colour should be red.
• The heading should be as large in size as ‘My First Web Page’.

Answer:
<!DOCTYPE html>
<html>
<head>
    <title>SOP 1</title>
</head>
<body style="background-color: green; color: red;">
    <h1>My First Web Page</h1>
</body>
</html>
In simple words: This code creates a basic webpage where the background is set to green, the text is colored red, and the main heading is displayed in the largest heading size using the h1 tag.

🎯 Exam Tip: Always use the style attribute in the body tag to apply background and text colors easily, and remember that h1 is the largest heading tag in HTML.

 

Question 1. Create a web page with the following specifications:
• Display a horizontal line after the heading.
• Display your name in Bold, address in Italics, and standard as 11th.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>sop1</title>
</head>
<body bgcolor=green text= red>
<h1> My First Web Page </h1>
<hr>
<b> Reliable Publications</b>
<br>
<i> Chira bazar,Charni road,Mumbai</i>
<br>
Standard 11th.
</body>
</html>
This basic HTML structure uses standard formatting tags to style text and set background colors.
In simple words: This HTML code creates a simple web page with a green background and red text, displaying a heading, a horizontal line, bold name, italicized address, and standard text.

🎯 Exam Tip: Always remember to close all opened tags like <b>, <i>, and <html> to ensure your web page renders correctly in all browsers.

 

SOP 2: Create a Web Page With, Following Specifications.

 

Question. Write an HTML code to display the following:
• Image of any scientist with an alternate text as his name.
• Create a paragraph related to the information of that scientist.
• Create a table of his/her inventions.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>sop2</title>
</head>
<body>
<img src="Albert Einstein.jpg" alt="Albert Einstein">
<br>
<p>
Albert Einstein was a German-born theoretical physicist who developed the theory of relativity,<br> one of the two pillars of modern physics. His groundbreaking contributions revolutionized our understanding of space, time, and gravity. His work is also known for its influence on the philosophy of science.
</p>
<table border="5" bordercolor="pink">
<tr>
<th> Sr no.</th>
<th> Invention </th>
<th> Year</th>
</tr>
<tr>
<td>1</td>
<td>Quantum Theory of Light </td>
<td>1905</td>
</tr>
<tr>
<td>2</td>
<td>Theory of Relativity</td>
<td>1907</td>
</tr>
</table>
</body>
</html>
In simple words: This HTML code creates a webpage about Albert Einstein. It displays his picture, a short paragraph about his life, and a neat table listing two of his major scientific inventions and their years.

🎯 Exam Tip: Always remember to use the 'alt' attribute in the image tag to provide alternative text, as it is essential for web accessibility and scoring full marks.

 

Question SOP 3. Create a webpage with the following specifications:
• Display heading ‘Application Form’ in the highest heading with center alignment.
• Accept name, standard 11th or 12th with only one selection choice.
• Submit the form.
Answer:
<!DOCTYPE html>
<html>
<head> <title> sop3</title>
</head>
<body>
<h1 align=center> Application Form </h1>
<form>
Enter Name:<input type=text name=t1>
<br><br>
Standard:<br>
<input type="radio" name=r1>11th<br>
<input type="radio" name=r1>12th<br>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
This code successfully creates a basic HTML form with text input, radio buttons, and a submit button.
In simple words: This HTML code creates a simple online form where you can type your name, select either 11th or 12th standard using a single-choice radio button, and click submit.

🎯 Exam Tip: Always use the same 'name' attribute (like name="r1") for radio buttons in a group so that only one option can be selected at a time.

 

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

 

Number of StudentsBoysGirls
1005050

Link this page to another page as follows (Demo.html):

 

 

STD - XI
Stream - Science
Div - A


Answer:
<!DOCTYPE html>
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<center>
<table border="1" width="69%">
<tr bgcolor="pink">
<td>Number of Students</td>
<td>Boys</td>
<td>Girls</td>
</tr>
<tr bgcolor="lightgreen">
<td>100</td>
<td>50</td>
<td>50</td>
</tr>
</table>
<br />
<a href="Demo.html">
<table border="1">
<tr>
<td>
<strong>STD - XI</strong><br />
<strong>Stream - Science</strong><br />
Div - A
</td>
</tr>
</table>
</a>
</center>
</body>
</html>

In simple words: This HTML code creates a table to display student statistics and wraps a second table inside an anchor tag to act as a clickable link to another page.

 

🎯 Exam Tip: When linking elements, wrapping an entire table inside an anchor tag <a> is a valid way to make the entire block clickable as a link button.

Question 1. Write an HTML code to create a table displaying student data with headers "Number of Students", "Boy", and "Girls" as shown in the preview.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Student Count</title>
</head>
<body>
<table border="1">
<tr>
<th>Number of Students</th>
<th>Boy</th>
<th>Girls</th>
</tr>
<tr>
<td>100</td>
<td>50</td>
<td>50</td>
</tr>
</table>
</body>
</html>
In simple words: This code creates a structured table on a webpage with three columns to display the count of students, boys, and girls.

🎯 Exam Tip: Use the <th> tag for table headers to automatically make the text bold and centered inside the header cells.

 

Question 2. Write an HTML code to create a centered table containing a hyperlink to "sop4.html" displaying class details.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>the heading</title>
</head>
<body>
<header>
<center>
<table border="1" align="center">
<tr align="center">
<td><a href="sop4.html">STD – XI</a>
<br>Stream – Science<br>
Div – A<br></td>
</tr>
</table>
</center>
</header>
</body>
</html>
In simple words: This code displays a centered table cell containing a clickable link that takes you to another page called "sop4.html" when clicked.

🎯 Exam Tip: Always ensure that attributes like href and border use standard straight quotation marks instead of curly smart quotes to prevent code execution errors.

Free MSBSHSE Textbook Explanations: Class 11 Information Technology Set 2 Web Designing HTML 5

Chapter Exercise Answers for Class 11 Information Technology

Explore reliable textbook solutions for Set 2 Web Designing HTML 5 tailored for Class 11 learners. Utilizing these complete exercise answers ensures your preparation aligns exactly with official MSBSHSE standards for Information Technology.

Detailed Answer Guides for Set 2 Web Designing HTML 5

Clear, methodical explanations accompany every challenging problem within the Class 11 Information Technology text. Engaging with these detailed answers lays a solid foundation for advanced learning and improves foundational clarity for upcoming assessments.

Complete Preparation Kit for Class 11 Exams

Consistent practice with these solution guides cultivates faster problem-solving habits and clearer logical structuring. For a complete preparation experience, pair these textbook answers with our dedicated revision notes and sample papers for Class 11 Information Technology.

FAQs

Where can I find the latest Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions for the 2026-27 session?

The complete and updated Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions is available for free on StudiesToday.com. These solutions for Class 11 Information Technology are as per latest MSBSHSE curriculum.

Are the Information Technology MSBSHSE solutions for Class 11 updated for the new 50% competency-based exam pattern?

Yes, our experts have revised the Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions as per 2026 exam pattern. All textbook exercises have been solved and have added explanation about how the Information Technology concepts are applied in case-study and assertion-reasoning questions.

How do these Class 11 MSBSHSE solutions help in scoring 90% plus marks?

Toppers recommend using MSBSHSE language because MSBSHSE marking schemes are strictly based on textbook definitions. Our Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions will help students to get full marks in the theory paper.

Do you offer Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions in multiple languages like Hindi and English?

Yes, we provide bilingual support for Class 11 Information Technology. You can access Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions in both English and Hindi medium.

Is it possible to download the Information Technology MSBSHSE solutions for Class 11 as a PDF?

Yes, you can download the entire Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions in printable PDF format for offline study on any device.