11th Class . IT(Information Technology) Skill Set 2 - HTML -5 . Sop-4

 

STD: 11th.   Subject: IT(Information Technology)

Web Designing (HTML - 5)

Skill Set 2 - HTML -5



SOP 4 : Write a program using HTML with the following specifications.

 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.


   Demo.html




Solution : 

<!DOCTYPE html>
<html>
<head>
<title>sop.4 </title>
</head>
<body>
<b> STD-XI</b><br>
<i>Stream – Science</i><br>
<u>Div – A</u>
</body>
</html>





<!DOCTYPE html>
<html>
<head>
<title>Sop-4</title>
</head>
<body>
<h2>Class Details</h2>
<table border="1">
<tr>
<th>Number of Students</th>
<th>Boys</th>
<th>Girls</th>
</tr>
<tr>
<td>100</td>
<td>50</td>
<td>50</td>
</tr>
</table>
<p><a href="https://codepen.io/Shrihari_Durgam/pen/YzMgxYX?editors=1000">Link to another page</a></p>
</body>
</html>



Output:




How To Use This Code:
1. Open notepad on your pc.
2. write first code and Save the Code.
3. Write second Code but in url Section write the path of first Webpage.
4. to run this code Open this code in Any browser.




Thanks For Visiting💖





Comments