导航条html代码

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Navigation Bar</title> <style> /* 样式可以根据需要进行调整 */ .navbar { background-color: #333; overflow: hidden; } .navbar a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 14px 20px; text-decoration: none; } .navbar a:hover { background-color: #ddd; color: black; } .active { background-color: #4CAF50; color: white; } </style> </head> <body> <div class="navbar"> <a class="active" href="#home">Home</a> <a href="#news">News</a> <a href="#contact">Contact</a> <a href="#about">About</a> </div> </body> </html>

这段代码创建了一个简单的水平导航栏,包含了四个链接:Home、News、Contact 和 About。你可以根据需要修改链接文本和链接地址,并根据自己的设计需求调整样式。

如果你想要给导航栏添加更多功能或者样式,可以进一步扩展代码。

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Improved Navigation Bar</title> <style> /* 样式可以根据需要进行调整 */ .navbar { background-color: #333; overflow: hidden; } .navbar a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 14px 20px; text-decoration: none; } .navbar a:hover { background-color: #ddd; color: black; } .active { background-color: #4CAF50; color: white; } .navbar-right { float: right; } @media screen and (max-width: 600px) { .navbar a, .navbar-right a { float: none; display: block; text-align: left; } } </style> </head> <body> <div class="navbar"> <a class="active" href="#home">Home</a> <a href="#news">News</a> <a href="#contact">Contact</a> <a href="#about">About</a> <div class="navbar-right"> <a href="#search">Search</a> <a href="#login">Login</a> </div> </div> </body> </html>

这个版本添加了一个右侧的导航栏,里面包含了两个链接:Search 和 Login。此外,通过媒体查询,在屏幕宽度小于 600px 时,链接会堆叠在一起,以适应移动设备的显示。你可以根据需要进行进一步的调整和定制。