Simple Program of HTML
Simple Program of HTML
<html>
<head>
<title>First program</title>
</head>
<body bgcolor=#ffff00>
<h1>INGRAHAM POLYTECHNIC</h1>
<h2>Computer science & engg.<h2>
<p>
My name is Chandrika Varshney and I am a CSE final year student
</p>
</body>
</html>
Program to ordered list
<html>
<head>
<title>ORDERED LIST</title>
</head>
<body bgcolor="#ooffff">
<h1>SUBJECT OF COMPUTER SCIENCE & ENGG.</h1>
<p><ol start="A">
<h2>5th semester subjects</h2>
<li>Data Structure</li>
<li>RDBMS</li>
<li>Java</li>
<li>IMED</li>
<li>E-commerce</li>
<h2>6th semester subjects<h2>
<li>Computer Graphic</li>
<li>Project</li>
<li>Internet & Web Technology</li>
<li>Environmental & Disaster Management</li>
</p>
</body>
</html>
Program of unordered list
<html>
<head>
<title>UNORDERED LIST</title>
</head>
<body bgcolor="#c0c0c0">
<h1>List of Computer Languages</h1>
<ul style="list-style-type:square">
<li>java</li>
<li>c & c++</li>
<li>ASP.Net</li>
<li>Visual Basic</li>
<li>PHP</li>
<li>HTML</li>
<li>Java Script</li>
</ul>
etc..........
</body>
</html>