Worksheet 1
Student Name: Ritik chauhan UID: 24MCA20311
Branch: MCA Section/Group:5B
Semester: 1st Date of Performance:14/08/24
Subject Name: Web programming lab Subject Code: 24CAP-605
. AIM.
To understand and implement various HTML tags, including the anchor (<a>) and table
(<table>) tags with their attributes, to create a simple webpage demonstrating their
usage.
. Task To Done.
1. Create an HTML document that includes various HTML tags such as headings,
paragraphs, lists, and anchor tags.
2 Ensure the page is well-structured and demonstrates a clear understanding of these
elements.
.CODE.
<html>
<head>
<style>
table{
width: 90%;
background-color: rgb(32, 215, 163);
}
</style>
<title>web page</title>
</head>
<body>
<div style="text-align:center">
<h1>STUDENT DATA</h1>
</div>
<div style="text-align: center;">
<a href="https://uims.cuchd.in/" target="_blank">click hare to visit
CUIMS</a>
</div>
<table border="yellow">
<tr>
<th>name</th>
<th>class</th>
<th>section</th>
<th>mark percentage</th>
</tr>
<tr>
<td>Ritik chauhan</td>
<td>BCA</td>
<td>5b</td>
<td>70</td>
</tr>
<tr>
<td>Lokesh verma</td>
<td>MCA</td>
<td>4B</td>
<td>76</td>
</tr>
<tr>
<td>Aditya</td>
<td>MBA</td>
<td>1A</td>
<td>80</td>
</tr>
<tr>
<td>Aaryan</td>
<td>LLB</td>
<td>5B</td>
<td>68</td>
</tr>
<tr>
<td>Aman</td>
<td>MBA</td>
<td>2A</td>
<td>74</td>
</tr>
</table>
<p>
This data shows the class, section of the students and their percentage of
marks
</p>
</body>
</html>
>
: Learning outcomes:
1. Applying Semantic HTML
2. Understanding the various tag present in the html
3. I have learnt how to create a web to page with the help of tags.
4. Understand creating a link in web page using the anchor tags .