Click to See Complete Forum and Search --> : Class Project Help with 2 Ordered Lists next to each other


TheLuvableOne
12-11-2008, 08:42 PM
Hey I need help on a class project and I need to get two ordered list next to each other.
If I could get the coding right I can put the information in.
This is what I have so far.

<html>
<head>
<title>Security Analysis and Reporting by Jackie</title>
</head>
<body bgcolor="brown">
<h1><font color="pink">Security Analysis And Reporting</font></h1>
<br>
<h2><font color="pink">*Analysis*</font></h2>
<br>
<h3><font color="pink">For analyzing your computer to see how well your security is and to find promblems, bugs and viruses you can use programs to scan your computer. Some programs are McAfee, My secuirty, Norton Anti Virus. These software applications intended for probing the confidential information stored on your computer on its vulnerability to unauthorized access by hackers. Your computer may contain private information which you have long forgotten about. These may include your credit card information, login names, passwords as well as cookie files tracking your Web surfing habits. Most of the software will find all personal information and suggest its unrestorable erasure. The software also evaluates the level of your privacy protection and proposes ways to maximize it. Please bear in mind that no antispyware will save your from information theft. You need to be aware of what and where sensitive information is stored on your computer and purge it on a regular basis thus making information theft useless. Always keep on the safeside!</font></h3><br>
<h3><font color="pink">
<ol>
<lh>Top Ten Antivirus Software According to TopTenReviews<lh>
<br>
<li>BitDefender Antivirus
<li>Kaspersky Anti-Virus......................................................................Some How Get Another Ordered List HERE
<li>Webroot Antivirus
<li>ESET Nod32
<li>AVG Anti-Virus
<li>Vipre Antivirus + Antispyware
<li>F-Secure Anti-Virus
<li>Trend Micro
<li>McAfee VirusScan
<li>Norton AntiVirus
</ol>
</font></h3>

<a href="http://photobucket.com/images/lock" target="_blank"><img src="http://i426.photobucket.com/albums/pp346/Nozzlezator/seo.jpg" border="0" alt="Lock Pictures, Images and Photos"/></a>
</h2>
<br>
<h2>*Reporting*<h2>
<br>
....
<br>
<ol>
<lh>Top Ten Malware Reported<lh>
<br>
<li>Troj/Invo-Zip.............12%
<li>W32/Netsky...............9.5%
<li>Mal/EncPk-EI............7.8%
<li>Troj/Pushdo-Gen.......6.3%
<li>Troj/Agent-HFU........5.6%
<li>Mal/Iframe-E.............5.5%
<li>Troj/Mdrop-BTV.......5.3%
<li>Troj/Mdrop-BUF.......4.5%
<li>Troj/Agent-HFZ.........4.4%
<li>Troj/Agent-HGT.........3.9%
<li>Other...........................35.2%
</ol>
<br>
<a href="http://www.sophos.com/security/top-10/"></a>


</font>
</script>
</body>
</html>

KDLA
12-12-2008, 09:40 AM
Tutorial: http://css.maxdesign.com.au/floatutorial/introduction.htm

javawebdog
12-12-2008, 10:36 AM
For one thing your <li> are not closed with </li>. Your list header close is incorrect as well should be </lh>
But if you add that then you can embed a list within a list .

<ol>
<lh>the header</lh>
<li> first item</li>
<li> second item
<ol>
<li>first item in sublist</li>
<li>second item in sublist>
</ol>
</li>
<li> third item</li>


There are several tags that do not REQUIRE closers: li, p, etc. but it is a bad habit to get into and will prevent you from building xhtml compliant code.

Good luck.