الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ul { list-style-type: none; margin: 0; padding: 0; background-color: #282a35; overflow: hidden; } li { float: left; border-right: 1px solid #777; } li:last-child { border-right: none; } li a { display: block; color: white; padding: 12px 16px; text-decoration: none; } li a:hover:not(.active) { background-color: black; } .active { background-color: darkcyan; } </style> </head> <body> <h1>Horizontal Navigation Bar</h1> <p>The hover effect works only with links that are not using the "active" class.</p> <ul> <li><a href="#home">Home</a> <li><a href="#services">Services</a> <li><a href="#contact">Contact</a> <li style="float:right;"><a href="#about" class="active">About</a> </ul> </body> </html>