ShapeYourPath
(current)
Run Code
Live Code Editor- Materialize Navbar Active items
Source Code
<!DOCTYPE html> <html lang="en"> <head> <!--Import Google Icon Font--> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> <!--Import materialize.css--> <!-- Compiled and minified CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" /> <!--Let browser know website is optimized for mobile--> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content=""> <title>Materialize Active Navbar Item</title> <style type="text/css"> p { font-size: 18px; } h2 { font-size: 35px; } .custom-padding { height: 80px; } .custom--space { margin-bottom: 50px; } </style> </head> <body> <h1 class="center-align">Materialize Navbar Active Item</h1> <nav> <div class="nav-wrapper"> <a href="#!" class="brand-logo center">Logo</a> <ul id="nav-mobile" class="left hide-on-med-and-down"> <li><a href="#">HTML5</a></li> <li><a href="#">CSS3</a></li> <li class="active"><a href="#">JavaScript</a></li> </ul> </div> </nav> <!-- Compiled and minified JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> </body> </html>
Output :
Running