HTML Worksheet 1
HTML Worksheet 1
. 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.
.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;">
</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: