HTML CSS examples for CSS Widget:Menu
Html header across screen width with menu aligned to right
<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>