Cws 2
Cws 2
CODE
<!DOCTYPE html>
<html>
<head><title>Unordered List</title></head>
<body>
<h3>Features of html</h3>
<ul>
<li>platform independent</li>
</body>
<html>
OUTPUT
CODE
<!DOCTYPE html>
<html>
<head><title>Ordered List</title></head>
<body>
<ol>
<li>HTML is light-weighted hence it makes the webpage to load fast and easily.</li>
<li>it is simple and can be integrated with various programming languages like PHP, JavaScript, .NET,
Python etc. with ease</li>
<li>Modern HTML and CSS framework has revolutionised HTML uses for creating more dynamic and
creative website and applications</li>
<li>NO specific coder writer is required to write the code as it can be written with ease on
notepad</li>
<li>To run the code, we just require a general purpose browser which can be easily available in any
device.</li>
</ol>
</body>
<html>
OUTPUT
CODE
<!DOCTYPE html>
<html>
<body>
<dl>
<dt>Python</dt>
<dd>Python is a widely used general-purpose, high level programming language. It was created by
Guido van Rossum in 1991 and further developed by the Python Software Foundation. It was
designed with an emphasis on code readability, and its syntax allows programmers to express their
concepts in fewer lines of code.</dd>
<dt>Java</dt>
<dd>Python is a widely used general-purpose, high level programming language. It was created by
Guido van Rossum in 1991 and further developed by the Python Software Foundation. It was
designed with an emphasis on code readability, and its syntax allows programmers to express their
concepts in fewer lines of code.</dd>
<dt>JavaScript</dt>
<dt>C Language</dt>
<dd>C is a procedural programming language initially developed by Dennis Ritchie in the year 1972
at Bell Laboratories of AT&T Labs. It was mainly developed as a system programming language to
write the UNIX operating system.</dd>
</dl>
</body>
</html>
OUTPUT:
<!—Final Webpage -->
<!DOCTYPE html>
<html>
<head>
<title>
Practical No 2
</title>
</head>
<body>
<ol type="1">
<li>CSE</li>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ol>
<li>CSE</li>
<li>First Semester</li>
<li>Second Semester</li>
<li>Third Semester</li>
<li>Fourth Semester</li>
</ul>
<li>IT</li>
<li>ME</li>
<li>First Semester</li>
<li>Second Semester</li>
<li>Third Semester</li>
<li>Fourth Semester</li>
</ul>
<li>CIVIL</li>
</ol>
<li>CSE</li>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ol>
<li>CSE</li>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ol>
<h1>Unordered List</h1>
<li>CSE</li>
<li>CSE</li>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ol>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ul>
<li>CSE</li>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ul>
<li>CSE</li>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ul>
BRANCH
<li>CSE</li>
<li>IT</li>
<li>ME</li>
<li>CIVIL</li>
</ul>
</body>
</html>
OUTPUT: