Welcome! Access the best MSBSHSE Solutions for Class 11 Information Technology Set 2 Web Designing HTML 5 right here. Designed for the 2026-27 term, these answers follow the newest MSBSHSE curriculum guidelines for Class 11 Information Technology. Get our expert-verified study solutions for Class 11 Information Technology as free downloadable PDFs.
Download Class 11 Information Technology Set 2 Web Designing HTML 5 MSBSHSE Answers
Check out these MSBSHSE textbook questions for Class 11 to strengthen your basic knowledge. Our Class 11 Information Technology solutions offer structured, step-by-step answers that clarify every concept. Practicing these Set 2 Web Designing HTML 5 solutions guarantees better results in school tests.
Set 2 Web Designing HTML 5 Answers & Solutions for Class 11 Information Technology (MSBSHSE)
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 Students | Boys | Girls |
|---|---|---|
| 100 | 50 | 50 |
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 study material for Information Technology
Free MSBSHSE Textbook Explanations: Class 11 Information Technology
Comprehensive Textbook Solutions for Set 2 Web Designing HTML 5
Explore expert-verified MSBSHSE Solutions for Set 2 Web Designing HTML 5 right here on our portal. Designed by experienced educators, these answers address every exercise question found within your Class 11 Information Technology textbook, fully updated to match the latest academic standards and active MSBSHSE syllabus guidelines.
Concept-Driven Answers for Better Clarity
Our educators provide granular, step-by-step explanations for every intricate question within the Class 11 Information Technology text. By explaining the reasoning behind each solution, we help Class 11 scholars balance theoretical depth with practical problem-solving. Engaging with these MSBSHSE Questions and Answers builds lasting conceptual clarity.
Effective Self-Study and Homework Assistance
Frequent review of our Information Technology content builds strong analytical capabilities and response efficiency. Perfect for structured self-study, these Class 11 problem sets should be supplemented with our official Revision Notes and Sample Papers for Set 2 Web Designing HTML 5 to achieve peak performance in school evaluations.
FAQs
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.
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.
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.
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.
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.