
27.11.2009, 08:24
|
|
Познавший АНТИЧАТ
Регистрация: 27.04.2007
Сообщений: 1,044
С нами:
10021597
Репутация:
905
|
|
нет там никакой явы, это CSS
Код HTML:
<html>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<head>
<style type="text/css">
a {text-decoration: none;}
body {
// background: #111 url(img/bg.jpg) repeat-y center top;
// color: #BBB;
font: normal 62.5% "Lucida Sans Unicode",sans-serif;
}
.nav {background: #191919 url(img/nav.gif);}
.nav a {
background: #191919 url(img/nav.gif);
border-right: 1px solid #161616;
color: #CCC;
float: left;
font: bold 1em Verdana,sans-serif;
line-height: 51px;
padding: 0 20px;
}
.nav a:hover {
background: #191919 url(img/nav_hover.gif);
}
</style>
</head>
<body>
<div class="nav">
<a href="index.html">Главная</a>
<a href="Dowload.html">Download</a>
<a href="gallery.html">Фотогалерея</a>
<a href="">Прочее</a>
<a href="support.html">Обратная связь</a>
</div>
</body>
</html>
|
|
|