CS202 Assignment 1 Code:-
<!DOCTYPE html>
<html>
<head>
<title>cs202-assignment-1-solution</title>
<style>
body{
background: #40E0D0;
}
h1 {
text-align: center;
}
.im1c {
height: 150px;
width: 350px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
table, th, td {
border: 1px solid black;
text-align: center;
}
</style>
</head>
<body>
<h1>HTML (Hyper Text Markup Language)</h1>
<div class="im1c center" ><img class="im1c center" src="im1.jpg"></div>
<h3>Introduction</h3>
<p>HTML stands for hyper text markup language.It is standerd markup language used to create the web pages along with CSS and Javascript.</p>
<ol>
<li>HTML Docoument</li>
<li>HTML Elements</li>
<li>HTML headings and paragraphs</li>
<li>HTML formating Elements</li>
</ol>
<table style="width:70%; margin-left:15%; ">
<tr>
<th>TOPIC</th>
<th>DISCRIPTION</th>
<th>Interner links</th>
</tr>
<tr>
<td><b>HTML DOCUMENTS</b></td>
<td>
<li>All html documents must started with <!DOCTYPE html></li>
<li>The html being itself along with <html> and ends with </html> </li>
<li>The visible pasrt html documents is <Body> tag</li></td>
<td><a href="#">click here for details</a></td>
</tr>
<tr>
<td><b>HTML ELEMENTS</b></td>
<td>AN HTML element usausly with a starting tag and the ending tag</td>
<td><a href="#">click here for details</a></td>
</tr>
<tr>
<th rowspan="2">HTML Headding & paragraphs</th>
<td>AN HTML element usausly with a starting tag and the ending tag</td>
<td><a href="#">click here for details</a></td>
</tr>
<tr>
<td>AN HTML element usausly with a starting tag and the ending tag</td>
<td><a href="#">click here for details</a></td>
</tr>
<tr>
<td><b>HTML Formatting Elements</b></td>
<td>
<li>blod text</li>
<li>important text </li>
<li>marked text</li>
<li>small text </li>
<li>deletd text</li>
<li>inserted text </li>
<li>subscript text </li>
<td><a href="#">click here for details</a></td>
</tr>
</table>
</body>
</html>