0% found this document useful (0 votes)
13 views3 pages

Simple Program of HTML

The document contains 3 HTML programs: 1) A simple HTML program with title, heading, paragraph tags and background color. 2) An HTML program with ordered list of 5th and 6th semester subjects of computer science engineering. 3) An HTML program with unordered list of popular computer programming languages.

Uploaded by

chandrika
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views3 pages

Simple Program of HTML

The document contains 3 HTML programs: 1) A simple HTML program with title, heading, paragraph tags and background color. 2) An HTML program with ordered list of 5th and 6th semester subjects of computer science engineering. 3) An HTML program with unordered list of popular computer programming languages.

Uploaded by

chandrika
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

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>

You might also like