Advertisement
Guest User

Untitled

a guest
Mar 31st, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.68 KB | None | 0 0
  1. <head>
  2.     <title>CC | Welcome to CC</title>
  3.     <link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
  4.     <link rel="icon" href="favicon.png" sizes="64x64" type="image/png">
  5.     <style>
  6.         p {
  7.             font-family: 'Abel', sans-serif;
  8.         }
  9.         body {margin:0;}
  10.         ul {
  11.             list-style-type: none;
  12.             margin: 0;
  13.             padding: 0;
  14.             overflow: hidden;
  15.             background-color: #FFFFFF;
  16.             position: fixed;
  17.             top: 10%;
  18.             width: 100%;
  19.         }
  20.        
  21.         li {
  22.             display: inline-block;
  23.         }
  24.        
  25.         li a {
  26.             display: block;
  27.             color: #000;
  28.             text-align: center;
  29.             padding: 14px 16px;
  30.             text-decoration: none;
  31.             font-family: 'Abel', sans-serif;
  32.         }
  33.        
  34.         #logo {
  35.             position: absolute;
  36.             /*vertical-align: top;
  37.             /top: 250%;
  38.             /left: 30%;*/
  39.         }
  40.        
  41.         # li a:hover:not(.active) {
  42.         #    background-color: #000;
  43.         #}
  44.        
  45.         #.active {
  46.         #    background-color: #4CAF50;
  47.         #}
  48.     </style>
  49. </head>
  50.  
  51. <body>
  52.     <center>
  53.         <ul>
  54.             <li><img id="logo" src="icon.png" style="width:128px;height:128px;"></li>
  55.             <li><a class="active" href="#home">CHARACTERS</a></li>
  56.             <li><a href="#contact">COMICS</a></li>
  57.             <li><a href="#news">TV</a></li>
  58.             <li><a href="#news">VIDEOS</a></li>
  59.             <li><a href="#news">NEWS</a></li>
  60.             <li><a href="#news">CONTACT</a></li>
  61.         </ul>
  62.     </center>
  63. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement