Pubication: Difference between revisions

From CUSL
Jump to navigation Jump to search
HeYing (talk | contribs)
Blanked the page
HeYing (talk | contribs)
No edit summary
Line 1: Line 1:
<!DOCTYPE html>
<html>
<head>
<style>
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


li {
    float: left;
}
a:link, a:visited {
    display: block;
    width: 120px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #98bf21;
    text-align: center;
    padding: 4px;
    text-decoration: none;
    text-transform: uppercase;
}
a:hover, a:active {
    background-color: #7A991A;
}
li
{
  display: inline;
  padding-right: 20px
}
</style>
</head>
<body>
<ul>
  <li><a href="#home">Home</a></li>
  <li><a href="#news">News</a></li>
  <li><a href="#contact">Contact</a></li>
  <li><a href="#about">About</a></li>
</ul>

Revision as of 15:33, 17 June 2015

<!DOCTYPE html> <html> <head> <style> ul {

   list-style-type: none;
   margin: 0;
   padding: 0;
   overflow: hidden;

}

li {

   float: left;

}

a:link, a:visited {

   display: block;
   width: 120px;
   font-weight: bold;
   color: #FFFFFF;
   background-color: #98bf21;
   text-align: center;
   padding: 4px;
   text-decoration: none;
   text-transform: uppercase;

}

a:hover, a:active {

   background-color: #7A991A;

} li {

 display: inline;
 padding-right: 20px

} </style> </head> <body>

  • <a href="#home">Home</a>
  • <a href="#news">News</a>
  • <a href="#contact">Contact</a>
  • <a href="#about">About</a>