The menu taps are made with HTML and CSS. It's all in the code:

HTML:


Code: <div id="header">

<ul>
<li><a href='/'>Home</a></li>
<li><a href='/tutorials/'>Tutorials</a></li>
<li class='selected'><a href='/forums/'>Forums</a></li>
<li><a href='/about/'>About</a></li>

</ul>
<form method="get" action="/search/" id="cse-search-box">
<div id="searchbar">
<span>

<input type="text" name="q" id="query" value="" /><input type="submit" id="submit" value="Search" />
<input type="hidden" name="cx" value="002160260272865772965:d4fb4jd-jh0" />
<input type="hidden" name="cof" value="FORID:11;NB:1" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="hidden" name="lr" value="lang_en" />
<input type="hidden" name="hl" value="en" />

</span>

</div>
</form>



CSS:

Code: /* ------------------------------------------------------------ */
/* Navigation bar */
/* ------------------------------------------------------------ */


/* Main Menu */

#header ul{
clear:left;
float:left;
position:relative;
top:45px;
left:50%;
text-align:center;
padding:0em;
margin:0em;
z-index: 2;
}

#header ul li{
list-style: none outside none;
float:left;
position:relative;
right:50%;
min-width: 7em;
width: 7em;
text-align: center;
font-weight: bold;
font-size: 0.9em;
border: 1px solid #000000;
margin: 0em 0.15em 0em 0.15em;
padding: 0;
}

#header ul li a
{
display:block;
background: #c6d3ef;
text-decoration: none;
color: #039;
padding: 0.15em 0em 0.15em 0em;

}

#header ul li.selected a {
background: #fda92a;
padding: 0.15em 0em 0.15em 0em;
color: #039;

}

#header ul li.selected {
border-bottom: 1px solid #fda92a;
}

#header ul li.selected a {
background: #fda92a;
padding: 0.15em 0em 0.15em 0em;
color: #039;
}

/* Search Bar */

#searchbar {
position:relative;
top:44px;
clear:both;
width: 100%;
padding: 0.1em 0em 0.1em 0em;
background: #fda92a;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
z-index: 0;
text-align:center;
}

#searchbar form {
margin: 0em;
padding: 0em;
}

#searchbar #query {
width:20em;
height:1.4em;
font-size: 0.75em;
padding: 0;
margin: 0;
border: 1px solid #000000;
}

#searchbar #submit {
width:7em;
height:1.6em;
padding: 0 0 0.2em 0;
margin: 0 0.2em 0 0.2em;
font-size: 0.75em;
border: 1px solid #000000;
vertical-align:bottom;
}


Keywords: Buttons and Search Bars,The menu taps with HTML and CSS,border top, font size,padding