Skip to main content

Posts

What is Git and GitHub. Difference Between Git and GitHub. Workflow of Git.

Introduction In this blog, we will dive into a Git and GitHub, understand their differences, and go over the typical workflow when using GitHub. Whether you are new to version control or simply curious about how these tools work together, this guide will walk you through the essential concepts and processes you need to know. What is Git? Git is a Distributed Version Control System (DVCS) that efficiently manages code changes across multiple contributors. It helps developers to monitor and manage changes in their code efficiently. Git was created by Linus Torvalds on April 7, 2005. It is widely used in developer community for its collaborative features, allowing developers to work on the same project, whether the project is small or large. You can efficiently monitor code modifications and preserve a detailed history of changes. Git is free and open-source, designed to handle everything from individual projects to complex ones. Developers can track every modification, create branches fo...

How to center a div using HTML and CSS.

Introduction This blog is about how to center a div using CSS. There are various techniques available, and depending on the layout you are working with, some methods may be more suitable than others. Before exploring it, you have to make sure that you have basic knowledge of HTML tags and CSS property and selectors for better understanding. We will cover three different methods to center a div. 1. Using the Flex Property Suppose we have a parent container and a child container and Inside the parent container we want to center a child container. so we can use the flexbox property. HTML Code :      < div class = "parent-container" >         < div class = "child-container" >         </ div >     </ div > CSS Code :      < style >         .parent-container {             width : 600px ;             hei...

How to create user login and signup page in php and mysql.

Introduction In this blog, we will create a user login and signup page in PHP and MYSQL. Login and signup feature is essential for any website to authenticate users. We create login and signup page for security purpose that protects some member only content or contain some features which is access by a user who is logged in. For instance, In a blog website that contains blogs related to various topics, but some blogs are members only and does not access by a user who is not a member. To excess member only content you just need to signup with your email address and you can easily access members only content. Similarly, if you want to write a blog to publish your own content and share your knowledge. You have to login on that website. After login you will be able to publish your content on that blog website. Learn how to create user login and signup page in PHP and MySQL. Before diving into this blog, you should have some basic knowledge of HTML and Bootstrap for front-end development an...