CSS3 Navigation practice

Size
2,125 Kb
Views
4,048

How do I make an css3 navigation practice?

What is a css3 navigation practice? How do you make a css3 navigation practice? This script and codes were developed by Esambino Wei Cheng Hsieh on 07 January 2023, Saturday.

CSS3 Navigation practice Previews

CSS3 Navigation practice - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS3 Navigation practice</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="nav-container"> <ul class="nav"> <li class="active"> <a href="#"> <span class="text">Home</span> </a> </li> <li> <a href="#"> <span class="text">About</span> </a> </li> <li> <a href="#"> <span class="text">Resume</span> </a> </li> <li> <a href="#"> <span class="text">Portfolio</span> </a> </li> <li> <a href="#"> <span class="text">Contact</span> </a> </li> </ul>
</div> <script src="js/index.js"></script>
</body>
</html>

CSS3 Navigation practice - Script Codes CSS Codes

*{ box-sizing: border-box;
}
body{ height:100%; background-color: #494949;
}
.nav-container{ float: right; margin-right: -10px; margin-top: 10px; width: 240px; box-shadow: 0px 2px 2xp 2px black; transition: all 0.2s linear;
}
.nav{ list-style-type: none; margin: 0px; padding: 0px;
}
a{ border-top: 1px solid #393939; border-bottom: 1px solid black; line-height: 50px; text-transform: uppercase; text-decoration: none; text-shadow: 1px 1px #191919; display: block; border-left: 6px solid transparent; border-radius: 3px; height: 100%; width: 100%; padding-left: 10%; transition: all 0.2s linear; color: #999; letter-spacing: 1px; font-family: Helvetica; font-size: 20px;
}
.active a { color: #2183c4; border-left: 6px solid #2183c4; background: #1B1B1B; outline: 0px;
}
li:not(.active):hover a { border-left: 6px solid #D9D9D9; color: #D9D9D9; background: #1B1B1B;
}
li{ height: 50px; position: relative; background: linear-gradient(#292929, #242424);
}
span{ position: absolute; right: 30px; transition: all 0.25s linear;
}

CSS3 Navigation practice - Script Codes JS Codes

/*
It's a CSS3 practice work
learned from Sara Soueidan's work: https://codepen.io/SaraSoueidan/
*/
CSS3 Navigation practice - Script Codes
CSS3 Navigation practice - Script Codes
Home Page Home
Developer Esambino Wei Cheng Hsieh
Username Esambino
Uploaded January 07, 2023
Rating 4
Size 2,125 Kb
Views 4,048
Do you need developer help for CSS3 Navigation practice?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Esambino Wei Cheng Hsieh (Esambino) Script Codes
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!