Contoh:
Top Navigation Bar
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body { margin: 0; font-family: Arial, Helvetica, sans-serif; } .topnav { overflow: hidden; background-color: #333; } .topnav a { float: left; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .topnav a:hover { background-color: #ddd; color: black; } .topnav a.active { background-color: #4CAF50; color: white; } </style> </head> <body> <div class="topnav"> <a class="active" href="#home">Home</a> <a href="#news">News</a> <a href="#contact">Contact</a> <a href="#about">About</a> </div> <div style="padding-left:16px"> <h2>Top Navigation Example</h2> <p>Some content..</p> </div> </body> </html>
Section Artikel
Langkah 1) Tambahkan HTML
Contoh:
<div class="topnav"> <a class="active" href="#home">Home</a> <a href="#news">News</a> <a href="#contact">Contact</a> <a href="#about">About</a> </div>
Langkah 2) Tambahkan CSS
Contoh:
/* Tambahkan warna background hitam ke Top Navigation */
.topnav {
background-color: #333;
overflow: hidden;
}
/* Style link didalam navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Ubah warna link on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Tambahkan warna pada link active/current */
.topnav a.active {
background-color: #4CAF50;
color: white;
}Tip: Untuk membuat Navigation Bar yang ramah terhadap perangkat mobile dan responsif, baca tutorial Cara membuat Top Navigation yang Responsif.
Tip: Buka Tutorial CSS Navigation bar untuk mempelajari lebih lanjut tentang bar navigasi.