List Assignment in HTML

List Assignment in HTML-

Please type this code in text editor and save file with .html extension
---------------------------------------------------------------
<!doctype html>
<html>
<head>
<title>List in HTML</title>
</head>
<body leftmargin="100px" background="please give image_name.extension">
<center><hr size="3" color="red" /><h1>List in HTML</h1><hr size="3" color="red" width="50%"/></center>
<h4>Post Graduation Courses</h4>
<ul>
<li>MA</li>
<li>MSc</li>
<li>M.Com</li>
<li>MBA</li>
<li>MCA</li>
<li>M.Tech</li>
</ul>
<h4>Graduation Courses</h4>
<ol>
<li>BA</li>
<li>BSc</li>
<li>B.Com</li>
<li>BBA</li>
<li>BCA</li>
<li>B.Tech</li>
</ol>
<h4>Computer Certificate Courses</h4>
<ol type="I">
<li>CCA</li>
<li>DTP</li>
<li>TALLY</li>
</ol>
<h4>Computer Diploma Courses</h4>
<ol type="A">
<li>DCA</li>
<li>ADCA</li>
<li>O Level</li>
</ol>
<h4>Programming Courses</h4>
<ol start="11">
<li>C Programming</li>
<li>JAVA</li>
<li>Python</li>
<li>PHP</li>
</ol>
</body>
</html>
---------------------------------------------------------------
Output-

html assignment


Post a Comment

0 Comments