Unorder List in Html

This is a simple program of HTML to arrange elements in unorder list. <ul> tag is used for unorder list and in that list <li> is represent each element in List.

Source Code 


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <title> Html Unorder List </title>
 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<h1> ANDEVELOPER </h1>
 <ul>
  <li> C++ </li>
  <li> Java </li>
  <li> Html </li>
  <li> Php </li>
  <li> CSS </li>
  <li> Android </li>
  <li> Linux </li>
  <li> SEO </li> 
 </ul>
</body>
</html>

Output of the Program 


Html Unorder List
Html Unorder List


Share on Google Plus

About Asad

Asad Niazi is Software Engineer , Programmer, Web Developer and a young mentor of BloggersTown and PProgramming. Asad Love to writes about Technology, Programming, Blogging and make money online.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment