Thread: Css P
View Single Post
  #2 (permalink)  
Old 25-01-2008, 03:09 AM
tommylogic's Avatar
tommylogic tommylogic is offline
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 6,314
Default

HTML
HTML Code:
 <div id="links1">
    <p><a href="http://www.kidskonnect.com/AlphabetizedList.html">Kids Konnect</a></p>
    <p><a href="http://www.kidlink.org/english/general/k/index.html">KidLinks</a></p>
    <p><a href="http://www.peanutbutter.com/games_home.asp">Peanut Butter Fun</a></p>
    <p><a href="http://www.farscapegames.co.uk/">Farscape Board Games</a></p>
    <p><a href="http://www.puzzleconnection.com/">Puzzle Connection</a></p>
      <p><a href="http://jigzone.com/">Jig Zone</a></p>
      <p><a href="http://www.dltk-kids.com/crafts/summer/puzzles/index.htm">Summer Puzzles</a></p>
      <p><a href="http://www.dltk-kids.com/puzzle.htm">More Puzzles</a></p>
      <p><a href="http://thinks.com/?500">Fun and Games for Playful Brains</a></p>
      <p><a href="http://thepuzzlefactory.com/">Puzzle Factory</a></p>
      <p><a href="http://www.rinkworks.com/brainfood/">Puzzles for the Brain to Gnaw On</a></p>
      <p><a href="http://www.iknowthat.com/com">I Know That!</a></p>
      <p></p>
  </div>
 
 <div id="links2">
  <p><a href="http://advicom.net/~e-media/kv/poetry1.html">Positively Poetry</a></p>
  <p><a href="http://rdz.stjohns.edu/kidopedia/">Kidopedia</a></p>
  <p><a href="http://www.sikids.com/">Sports Illustrated For Kids</a></p><p>  
  </p></div>  
  <div id="links3">
<p><a href="http://www.factmonster.com/">Fact Monster</a></p>
<p><a href="http://www.govspot.com/features/kids.htm">Government for Kids</a></p>
<p><a href="http://express.howstuffworks.com/">How Stuff Works Express</a></p>
<p><a href="http://www.infoplease.com">Infoplease</a></p>
<p><a href="http://www.m-w.com/">Merriam-Webster Online Dictionary and Thesaurus</a></p>
<p><a href="http://www.refdesk.com/index.html">RefDesk</a></p>
<p><a href="http://www.bls.gov/k12/">What Interests You?</a></p> <p><a href="http://www.worldalmanacforkids.com/">World Almanac for Kids Online</a></p>
  </div>
CSS
HTML Code:
body, h1, h2, h3, h4, p, ul, li {
margin: 0px;
padding: 0px;
}
#links1 {
font-family: "Times New Roman", Times, serif;
font-size: 13px;
color: #009900;
text-align: left;
position: absolute;
left: 0px;
width: 25%;
top: 26px;
}
#links1 a:link {
color: #009900;
font-weight: bold;
text-decoration: none;
}
#links1 a:hover {
color: #003300;
font-weight: bold;
text-decoration: underline;
background-color: #FFFF99;
}
#links1 a:visited {
color: #009900;
font-weight: bold;
text-decoration: none;
}
 
#links2 {
font-family: "Courier New", Courier, monospace;
font-size: 13px;
text-align: center;
position: relative;
width: 25%;
left: 35%;
top: 26px;
color: #0033FF;
}
 
#links2 a:link {
color: #003399;
font-weight: bold;
text-decoration: none;
}
#links2 a:hover {
color: #000000;
font-weight: bold;
text-decoration: underline;
background-color: #FFFF99;
}
.links2 a:visited {
color: #003399;
font-weight: bold;
text-decoration: none;
}
#links3 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #CC0000;
position: absolute;
width: 25%;
right: 0px;
text-align: right;
top: 26px;
}
#links3 a:link {
color: #CC0000;
font-weight: bold;
text-decoration: none;
}
#links3 a:hover {
color: #990000;
font-weight: bold;
text-decoration: underline;
background-color: #FFFF99;
}
#links3 a:visited {
color: #CC0000;
font-weight: bold;
text-decoration: none;
}

Last edited by tommylogic; 25-01-2008 at 03:11 AM.
Reply With Quote