Created
August 11, 2013 07:21
-
-
Save anaszen777/6203851 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Lists</title> | |
</head> | |
<body> | |
<h1>Order List</h1> | |
<ol> | |
<li>C</li> | |
<li>C++</li> | |
<li>JAVA</li> | |
</ol> | |
<h1>Unorder List</h1> | |
<ul> | |
<li>HTML</li> | |
<li>CSS</li> | |
<li>ASP.NET</li> | |
</ul> | |
<h1>Defination List</h1> | |
<dl> | |
<dt>Programming Skills</dt> | |
<dd>C</dd> | |
<dd>C++</dd> | |
<dd>JAVA</dd> | |
</dl> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment