1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
<html>
<head>
<title>litehtml • Fast and lightweight HTML/CSS rendering engine</title>
<style type="text/css">
/* Top menu style */
.topmenu {
width:500px;
margin:auto;
}
.nav{
background-color: lightcoral;
float:left;
width:80%;
height:43px;
}
.search-outer{
background-color: lightpink;
float:right;
width:20%;
height:43px;
}
.topmenu ul {
margin:0px;
padding:0px;
float:left;
}
.topmenu li {
float:left;
padding:0 2px 0 0;
list-style:none;
background-color:lightgray;
border: 5px solid darkred;
}
</style>
</head>
<body>
<div class="topmenu">
<div class="nav">
<ul>
<li class="first"><a href="http://www.litehtml.com/">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="wiki.html">Wiki</a></li>
<li><a href="get-the-code.html">Get the code</a></li>
<li><a href="donate.html">Donate</a></li>
</ul>
</div>
<div class="search-outer">
<div class="search">
some text here
</div>
</div>
</div>
</body>
</html>
|