Results 1 to 3 of 3

Thread: html using div tag

  1. #1

    Thread Starter
    Member
    Join Date
    Jul 2011
    Posts
    55

    html using div tag

    hi all ,
    can u tell me how to modify this html code using <div> tag....
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-EN">
    <head>
    <script src="jquery-1.2.1.min.js" type="text/javascript"></script>
    <script src="menu-collapsed.js" type="text/javascript"></script>	
    <link rel="stylesheet" type="text/css" href="style.css" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Simple JQuery Collapsing menu</title>
    <style type="text/css">
    li a 
    {
    display:inline-block;
    } 
    li a 
    {
    display:block;
    }
    </style>
    </head>
    <body>
    <h1>Simple JQuery Collapsing menu</h1>
    <p>Same menu as seen <a href="./">here</a> but now as a simple collapsing menu.</p>
    <ul id="menu">
    
    <li>
      <a href="#">Weblog Tools</a>
       <ul>
    	<li><a href="http://www.pivotx.net/">PivotX</a></li>
    	<li><a href="http://www.wordpress.org/">WordPress</a></li>
    	<li><a href="http://www.textpattern.com/">Textpattern</a></li>
    	<li><a href="http://typosphere.org/">Typo</a></li>			
       </ul>		
    </li>		
    
    <li>
      <a href="#">Programming Languages</a>
       <ul>
          <li><a href="http://www.php.net/">PHP</a></li>
          <li><a href="http://www.ruby-lang.org/en/">Ruby</a></li>
          <li><a href="http://www.python.org/">Python</a></li>
          <li><a href="http://www.perl.org/">PERL</a></li>
          <li><a href="http://java.sun.com/">Java</a></li>
          <li><a href="http://en.wikipedia.org/wiki/C_Sharp">C#</a></li>
       </ul>
    </li>
    
    <li><a href="http://www.i-marco.nl/weblog/">Marco's blog (no submenu)</a></li>
    
    <li>
       <a href="#">Cool Stuff</a>
       <ul>
    	<li><a href="http://www.apple.com/">Apple</a></li>
    	<li><a href="http://www.nikon.com/">Nikon</a></li>
    	<li><a href="http://www.xbox.com/en-US/">XBOX360</a></li>
    	<li><a href="http://www.nintendo.com/">Nintendo</a></li>
       </ul>
    </li>
    		
    <li>
       <a href="#">Search Engines</a>
       <ul>
    	<li><a href="http://search.yahoo.com/">Yahoo!</a></li>
        <li><a href="http://www.google.com/">Google</a></li>
    	<li><a href="http://www.ask.com/">Ask.com</a></li>
    	<li><a href="http://www.live.com/?searchonly=true">Live Search</a></li>
      </ul>
    </li>
    </body>
    </html>

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: html using div tag

    what do you mean? do you want to put a div tag around the whole thing? a part of it? or what? your question is way too vague and there is no relation to the code you posted.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3

    Thread Starter
    Member
    Join Date
    Jul 2011
    Posts
    55

    Re: html using div tag

    instead of paragraph and list items as a part of it only...
    is there to use using div tag.....

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width