Posts

Showing posts with the label HOW TO MAKE NAV BAR
Image
The Compelling Reasons to Learn Web Design In an era dominated by the digital realm, the ability to craft visually appealing and functional websites is a valuable skill that transcends industries. Learning web design is not just about creating aesthetically pleasing pages; it opens doors to a world of creativity and opportunities. In this blog, we'll delve into the compelling reasons why aspiring individuals should consider learning web design and how it can pave the way for personal and professional growth. Express Your Creativity: Web design is an art form that allows you to express your creativity in a digital space. From choosing color palettes to selecting fonts and arranging elements on a page, web designers have the power to create visually stunning and unique experiences. Learning web design provides a canvas for self-expression, enabling you to bring your ideas to life and leave a lasting impression on users. Meet the Demands of the Digital Age: The digital landscape is

how to make nav bar

Image
   HOW TO MAKE  NAV BAR AND  FILL BACKGROUND IMAGE     1.Step use a sublime text software , notepad+      2.save file      3.menu bar/ nav bar code    <!DOCTYPE html>    <html>    <head> <title>nav bar</title> <style type="text/css"> body{margin:0;}     body{background-image:url("index.jpg"); height:100%; width:100%;} .box{height:50px; width:100%; background-color:black;} .box ul{ float:left; font-size:24px; padding:10px 0; color:white; list-style: none;         margin:0;} .box ul li{float: left; margin-left:30px;} </style>     </head>    <body> <div class="box"> <ul><li>HOME</li> <li>ABOUT</li> <li>CONTACT</li>   <li>GALLERY</li>   <li>DHEERAJ KUMAR</li></ul> </div>    </body>    </html> 4. save file open in browser   output: