Write an Order and Unorder List program in HTML
Write an Order and Unorder List program in HTML
Name of Program - Order list and Unorder List Program
Text Editor - Notepad, Notepad++, Visual Studio Code, Atom, etc.
Code Input-
<!DOCTYPE html>
<html>
<head>
<title>Write an Order and Unorder List program in HTML </title>
</head>
<body>
<h1>Order and Unorder program</h2>
<h2>List of Text Editor</h2>
<ul>
<li>Atom</li>
<li>Visual Studio Code</li>
<li>Sublime</li>
<li>Brackets</li>
</ul>
<h2>List of Text Editor</h2>
<ol>
<li>Atom</li>
<li>Visual Studio Code</li>
<li>Sublime</li>
<li>Brackets</li>
</ol>
</body>
</html>
Output Screen - Internet Browser, Google Chrome, Microsoft Edge, etc.
Code View -
Order and Unorder program
List of Text Editor
- Atom
- Visual Studio Code
- Sublime
- Brackets
List of Text Editor
- Atom
- Visual Studio Code
- Sublime
- Brackets
Post a Comment