Showing posts with label UL. Show all posts
Showing posts with label UL. Show all posts

Saturday, 15 November 2014

Unorder List in Html

Structure of the Problem Requirements 

In this problem we will learn how to arrange elements in unorder list. <ul> tag is used for unorder list and in that list <li> is represent each element in List. <li> tag added when you add new element. There is different styles that can you be added in unorder list but in our example i didn't add this due to simplicity and ease of learning for beginners.  Here is the source code of this web page which help you in better understanding.

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