Skip to main content

Posts

Text over Image using CSS

       In this tutorial, we'll learn how to add text over an image using CSS. We'll cover how to position the text and style it to make it stand out against the image. Whether you're a beginner looking to learn CSS or a experienced developer looking to brush up on your skills, this tutorial is for you! By the end of the tutorial,  you'll be able to add text over images like a pro. So let's get started. text_over_image.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Text Over Image</title> <link rel="stylesheet" href="css/text_over_image.css"> <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet"> </head> <body> <div class="content-wrapper"> <img src="image/sample.jpg">

Responsive Navbar Using Jquery

            Welcome to our tutorial on how to create a responsive navbar using jQuery. In this post, we will walk you through the steps to create a navbar that adjusts to the size of the screen and displays a dropdown menu on smaller screens. We will be using jQuery to handle the toggle event for the dropdown menu and some basic CSS to style the navbar. By the end of this tutorial, you will have a fully functional responsive navbar for your website. So let's get started! responsive_navbar.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewpost" content="width=device-width; maximum-scale=1"> <title>Responsive Navbar</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <script type="text/javascript" src="

Basic Navigation Bar using CSS

                 Welcome to a tutorial on creating a basic navbar using CSS! In this video, we will go over the steps to create a simple navigation bar that you can use on your own website. We will cover the HTML structure of the navbar, as well as the CSS styles that give it its look and feel. By the end of this tutorial, you will have a solid understanding of how to create a navbar using CSS, and you will be able to customize it to fit your own unique style. Whether you're a beginner looking to learn the basics of web development, or a more experienced developer looking to brush up on your skills, this video is for you. So let's get started! navbar.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Navbar</title> <link rel="stylesheet" href="navbar.css"> <link href="https://fonts.googleapis.com/css?f

Auto Image Slider using CSS Only

     Are you ready to learn how to create an image slider using only CSS? Look no further! In this tutorial, we'll walk you through the step-by-step process of building a sleek and modern image slider using HTML and CSS. No JavaScript required! In this tutorial We'll cover setting up the HTML structure for the slider.       This will include creating the container element and styling the slider with CSS. You'll also learn how to add transitions and animations to create a smooth sliding effect. By the end of this tutorial, you'll have a fully functional image slider that you can use on your own website. Whether you're a beginner or an experienced developer, this tutorial has something for you. So let's get started creating your own image slider using CSS today! index.html <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/style.css"&