Html header across screen width with menu aligned to right - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Menu

Description

Html header across screen width with menu aligned to right

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from  ww  w  . ja v a  2 s .c om-->
 <body> 
  <div id="header" style="background-color: #ffcc88;"> 
   <div style="float: right;"> 
    <a href="">Blah Blah</a> 
    <a href="">Logout</a> 
   </div> 
   <h1>Hello</h1> 
  </div>  
 </body>
</html>

Related Tutorials