Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    How to create Snake Volume Slider using HTML CSS and JS

    22 March 2026

    How to create Stick Hero Game using HTML CSS and JS

    19 March 2026

    How to make Netflix Login page using HTML & CSS

    18 March 2026
    Facebook X (Twitter) Instagram YouTube Telegram Threads
    Coding StellaCoding Stella
    • Home
    • Blog
    • HTML & CSS
      • Login Form
    • JavaScript
    • Hire us!
    Coding StellaCoding Stella
    Home - HTML & CSS - How to make Glowing Navigation Menu Hover using HTML & CSS
    HTML & CSS

    How to make Glowing Navigation Menu Hover using HTML & CSS

    Coding StellaBy Coding Stella22 January 2026Updated:23 January 2026No Comments3 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Email WhatsApp Copy Link

    Let’s create a Glowing Navigation Menu Hover using HTML and CSS. This project will add a sleek glow effect to menu items when users hover over them, giving your website a modern and stylish look.

    We’ll use:

    • HTML to structure the navigation menu.
    • CSS to style it with glowing hover effects, smooth transitions, and a clean layout.

    Whether you’re designing a portfolio, a landing page, or a full website, this Glowing Navigation Menu Hover is a great way to enhance your UI and make your navigation more interactive. Let’s get started and add some glow to your menu! ✨

    HTML :

    This HTML creates a vertical navigation menu where each list item sets a custom color using –clr, and each link uses data-text to duplicate the text for the hover animation. The visible text has spaces for padding, while the CSS uses the data-text value to reveal a glowing colored version on hover, matching the color defined for each menu item.

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="UTF-8">
      <title>Glowing Navigation Menu | @coding.stella</title>
      <link rel="stylesheet" href="./style.css">
    </head>
    
    <body>
    
      <ul>
        <li style="--clr:#00ade1">
          <a href="#" data-text="&nbsp;Home">&nbsp;Home&nbsp;</a>
        </li>
        <li style="--clr:#ff6492">
          <a href="#" data-text="&nbsp;About">&nbsp;About&nbsp;</a>
        </li>
        <li style="--clr:#ffdd1c">
          <a href="#" data-text="&nbsp;Services">&nbsp;Services&nbsp;</a>
        </li>
        <li style="--clr:#00dc82">
          <a href="#" data-text="&nbsp;Blog">&nbsp;Blog&nbsp;</a>
        </li>
        <li style="--clr:#dc00d4">
          <a href="#" data-text="&nbsp;Contact">&nbsp;Contact&nbsp;</a>
        </li>
      </ul>
    
    </body>
    
    </html>

    CSS :

    This CSS imports a Google font, centers a vertical list on a dark background, and styles each link as large outlined text. On hover, a colored version of the text (from data-text) animates in from left to right with a glowing effect using width transition, a border-right cursor line, and drop shadow.

    @import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap');
    
    * {
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      font-family: 'Mochiy Pop One', sans-serif;
    }
    
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background: #252839;
    }
    
    ul {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    ul li {
      position: relative;
      list-style: none;
    }
    
    ul li a {
      font-size: 4em;
      text-decoration: none;
      letter-spacing: 2px;
      line-height: 1em;
      text-transform: uppercase;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    }
    
    ul li a::before {
      content: attr(data-text);
      position: absolute;
      color: var(--clr);
      width: 0;
      overflow: hidden;
      transition: 1s;
      border-right: 8px solid var(--clr);
      -webkit-text-stroke: 1px var(--clr);
    }
    
    ul li a:hover::before {
      width: 100%;
      filter: drop-shadow(0 0 25px var(--clr))
    }

    In conclusion, creating a Glowing Navigation Menu Hover using HTML and CSS is a simple yet powerful way to make your website look modern and interactive. With smooth transitions and glowing effects, you can enhance the user experience and draw attention to your navigation links ✨

    Facing any problems in your project ? Stay confident! Click Download, obtain the source code, and tackle your coding issues with determination. May your coding experience be smooth and rewarding!

    Glowing Hover effect
    Share. Copy Link Twitter Facebook LinkedIn Email WhatsApp
    Previous ArticleHow to make Animated Glowing Bell Button using HTML and CSS
    Next Article How to make Superman Loading Animation using HTML & CSS
    Coding Stella
    • Website

    Related Posts

    HTML & CSS Login Form

    How to make Netflix Login page using HTML & CSS

    18 March 2026
    HTML & CSS Login Form

    How to make Animated Login form with Changing Background in HTML & CSS

    12 March 2026
    HTML & CSS

    How to make Animated Search Bar Box using HTML and CSS

    4 March 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Trending Post

    Master Frontend in 100 Days Ebook

    2 March 202432K Views

    How to make Modern Login Form using HTML & CSS | Glassmorphism

    11 January 202431K Views

    How to make I love you Animation in HTML CSS & JavaScript

    14 February 202424K Views

    How to make Valentine’s Day Card using HTML & CSS

    13 February 202415K Views
    Follow Us
    • Instagram
    • Facebook
    • YouTube
    • Twitter
    ads
    Featured Post

    How to create Snake Volume Slider using HTML CSS and JS

    22 March 2026

    How to make Card Slider using HTML CSS & JavaScript

    12 January 2024

    How to create Smooth Image Slider using HTML CSS & JavaScript

    30 January 2025

    How to create Music Player using HTML CSS and JS

    14 January 2026
    Latest Post

    How to create Snake Volume Slider using HTML CSS and JS

    22 March 2026

    How to create Stick Hero Game using HTML CSS and JS

    19 March 2026

    How to make Netflix Login page using HTML & CSS

    18 March 2026

    How to create Animated Add to Cart Button using HTML CSS and JS

    15 March 2026
    Facebook X (Twitter) Instagram YouTube
    • About Us
    • Privacy Policy
    • Return and Refund Policy
    • Terms and Conditions
    • Contact Us
    • Buy me a coffee
    © 2026 Coding Stella. Made with 💙 by @coding.stella

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Looks like you're using an ad blocker. We rely on advertising to help fund our site.
    Okay! I understood