-
-
Save guilleiguaran/565536 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#header { | |
position:relative; | |
width:960px; | |
padding-bottom:25px; | |
} | |
#header p{ | |
text-transform:uppercase; | |
} | |
#header h1 { | |
background:url(img/logo.png) no-repeat; | |
text-indent:-9999px; | |
height:65px; | |
width:413px; | |
} | |
#menu_top { | |
background-color:#006790; | |
padding:10px; | |
} | |
#header #menu_top ul { | |
margin:0; | |
left:265px; | |
padding:0; | |
top:18px; | |
} | |
#header #menu_top ul li { | |
border-left:1px solid #FFF; | |
display:inline; | |
list-style-type:none; | |
padding:10px; | |
} | |
#menu_top ul li:first-child { | |
border-left:none; | |
} | |
#menu_top ul li a { | |
font:bold; | |
font-size:12px; | |
background-color:#006790; | |
padding:10px; | |
color:#FFF; | |
text-decoration:none; | |
} | |
#menu_top ul li a:hover { | |
background-color:#FF8B17; | |
} | |
#menu_top_right { | |
position:absolute; | |
margin:0; | |
left:735px; | |
padding:0; | |
top:110px; | |
} | |
#icons ul li { | |
display:inline-block; | |
padding:0; | |
} | |
#icons ul li a{ | |
text-indent:-9999px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Academica</title> | |
<link href="screen.css" rel="stylesheet" type="text/css" media="screen" /> | |
</head> | |
<body> | |
<div id="wrapper"> | |
<div id="header"> | |
<div id=menu_top> | |
<ul> | |
<li><a href="#">Home</a></li> | |
<li><a href="#">News</a></li> | |
<li><a href="#">Blog</a></li> | |
<li><a href="#">Gallery</a></li> | |
<li><a href="#">Page Templates</a></li> | |
<li><a href="#">Admissions</a></li> | |
<li><a href="#">Conferences</a></li> | |
</ul> | |
</div> | |
<p>You are here: <a href="#">Home</a></p> | |
<h1> | |
<p><a href="#">Social University</a></p> | |
<p>Lorem ipsum dolor sit amet</p> | |
</h1> | |
<div id="menu_top_right"> | |
<form id="form1" name="form1" method="post" action=""> | |
<label> | |
<input name="search" type="text" id="search" value="search" /> | |
</label> | |
<label> | |
<input type="submit" name="go" id="go" value="Search" /> | |
</label> | |
</form> | |
<div id="icons"> | |
<ul> | |
<li ><a href="#"class="youtube" >Youtube</a></li> | |
<li ><a href="#" class="linkedin" >LinkedIn</a></li> | |
<li ><a href="#" class="facebook">Facebook</a></li> | |
<li ><a href="#" class="flickr">Flickr</a></li> | |
<li ><a href="#" class="twitter">Twitter</a></li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment