Skip to content

Instantly share code, notes, and snippets.

@anaszen777
Created August 11, 2013 07:21
Show Gist options
  • Save anaszen777/6203851 to your computer and use it in GitHub Desktop.
Save anaszen777/6203851 to your computer and use it in GitHub Desktop.
<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