Code Like A Dev - Coding Blogs For Developers

Code Like A Dev is a coding blog where I post web development blog posts related to HTML, CSS, Javascript, Angular and ASP.NET Core. I also add posts related to Website Hosting and E-Commerce.

Recent Blogs

Versioning in ASP.NET Web API - 3 Different Ways

Author: Sameer Saini Date Published: March 08, 2023

ASP.NET API versioning is a technique used to version web APIs built with the ASP.NET framework. The goal of API versioning is to allow clients to specify which version of an API they want to use and to enable developers to make changes to the API without breaking existing clients.

Read More

Vue SEO - How to Optimize Your Vue Applications for Search Engines

Author: Sameer Saini Date Published: March 08, 2023

The blog post provides tips for optimizing Vue applications for search engines. These tips include using server-side rendering, adding metadata, using clean URLs, optimizing images, using semantic HTML, and improving page load time. By following these tips, Vue developers can improve their application's visibility in search engine results pages and provide a better user experience.

Read More

Mastering Google Drive API in C#: A Comprehensive Guide for Developers

Author: Sameer Saini Date Published: March 07, 2023

This blog provides a comprehensive guide for developers looking to use the Google Drive API in their C# applications. It covers various topics such as authentication, uploading and downloading files, searching, updating, deleting, and sharing files, working with folders, using the API with ASP.NET Core, handling errors, and best practices. By the end of the blog, developers will have a thorough understanding of how to effectively and efficiently use the Google Drive API in their C# projects.

Read More

Convert Byte To String In C#

Author: Sameer Saini Date Published: March 06, 2023

Converting a byte array to a string is a common task in C#, especially when working with data that has been encoded in bytes, such as image files or network packets. In this blog post, we'll explore several methods for converting byte arrays to strings in C#.

Read More

Convert Byte To Stream In C#

Author: Sameer Saini Date Published: March 06, 2023

In C#, you can easily convert a byte array to a stream using the MemoryStream class, which provides a stream backed by an in-memory buffer. This can be useful when working with APIs or libraries that require a stream as input, or when you need to manipulate the data in a byte array using stream-based operations. In this blog, we'll explore how to convert a byte array to a stream in C# using the MemoryStream class.

Read More

The Label Tag in HTML: A Beginner's Guide

Author: Sameer Saini Date Published: March 06, 2023

HTML is the standard markup language used to create web pages. The label tag is an important HTML element that is used to associate a text label with a form element such as input, select, textarea, and button. In this blog post, we will discuss what the label tag is, how it works, and its importance in creating accessible web forms.

Read More

Convert Int to String in C#

Author: Sameer Saini Date Published: March 02, 2023

Converting an int to a string is a common task in C# programming. This process is useful when you need to display an integer value as text, concatenate integer values with other strings, or store integer values in a text file. In this blog post, we'll explore the different ways to convert an int to a string in C#.

Read More

Convert String To Datetime In C#

Author: Sameer Saini Date Published: July 28, 2022

This blog post will teach us how to convert a string to DateTime in C#. Let's say you have a datetime string with a date time value and now you want to perform some date calculations or checks or something else, you would need to convert this string to date in C#.

Read More

Check If String Is A Number In C#

Author: Sameer Saini Date Published: July 28, 2022

In this blog post, we will learn how to check if a string is a proper number or integer in C#. Let's say you have a code in which you are getting a age as a string from a database call and you want to check if this string is a number or not before you could use it, this is where this check would be handy.

Read More

How To Open Task Manager In Windows 10

Author: Sameer Saini Date Published: July 18, 2022

In this blog post, we will learn how we can open a task manager in many different ways. A Task Manager is an advanced utility tool in Windows machines that helps you manage the apps and services that are running on your machine.

Read More

Autoplay Video In HTML

Author: Sameer Saini Date Published: July 18, 2022

In this blog post, we will learn how to autoplay a video in HTML just as your HTML web page loads. Video elements in HTML can be configured to autoplay as the website loads so that the user doesn't have to play the video manually.

Read More

Open Image In New Tab [With HTML Source Code]

Author: Sameer Saini Date Published: July 18, 2022

In this blog post, we will learn how to open images in a new tab using HTML code. You may have seen websites opening their images in new chrome or firefox tabs. That gives a good user experience to the user visiting your website.

Read More

Convert String To Float In C#

Author: Sameer Saini Date Published: June 12, 2022

In this blog post, we are going to learn how we can convert a string to float in C#. If you have a string that has a floating-point value or a double stored in it, and you want to convert the string to a float so that you can use it in your application.

Read More

Get Int Value From Enum In C# - Convert Enum To Int In C#

Author: Sameer Saini Date Published: June 12, 2022

In this blog post, we are going to learn how we can get an Int value from Enum in C#. As we know, An enumeration type (or enum type) is a value type defined by a set of named constants of the underlying integral numeric type.</p> <p>We can get the integral value of an enum and can use it inside our C# application.

Read More

Get The First Character Of A String In C#

Author: Sameer Saini Date Published: May 31, 2022

In this blog post, we are going to learn how we can get the first character of a string in C#. We will discuss 2 methods by which we can get the first character of a string. Just note that you should still check if the string is null or empty to avoid any runtime exceptions.

Read More

Convert List To Dictionary In C#

Author: Sameer Saini Date Published: May 31, 2022

In this blog post, we will learn how we can convert a list to a dictionary in C#. Let's say you have a list and you want to convert it to a dictionary so that you can have defined key value pairs so you can use them, this is where this conversion from a list to dictionary comes in handy.

Read More

Calculate Age From Date Of Birth (DateTime Birthdate) In C#

Author: Sameer Saini Date Published: May 31, 2022

In this blog post, we will learn how we can calculate the age of a person from their birthdate (birthday) in C#. To calculate the age of the person as of today's date, we need two variables, today's date and the birthdate(birth date) of the person for which we want to calculate the age.

Read More

Get File Size In C#

Author: Sameer Saini Date Published: May 22, 2022

In this blog post, we will see how we can get the size of a file in C#. To get a file size in C#, we have to use the Length property on the FileInfo.

Read More

Convert String To Hex In C#

Author: Sameer Saini Date Published: May 22, 2022

In this blog post, we will see how we can convert a string to hex in C#. We will look at 3 ways by which we can easily convert a string to hex in C#.

Read More

How To Add Tab Icon In HTML | Favicon In HTML

Author: Sameer Saini Date Published: April 28, 2022

Favicons are an essential part of a good-looking website. Tab Icon in HTML websites or otherwise known as the favicon is a small image that is displayed next to the page title in the browser tab.

Read More

How To Create HTML Lists Without Bullets

Author: Sameer Saini Date Published: April 28, 2022

When we create unordered lists in HTML, we get bullets before each of the list items for the unordered list. But, what if you don't need to show these bullets? What if you want to create HTML Lists without bullets?

Read More

How To Add HTML Border Around Text

Author: Sameer Saini Date Published: April 28, 2022

In HTML, you can add a box around text, or a border around text and change it to any color or thickness. Add HTML Border Around Text Using Inline CSS.

Read More

HTML Option Selected Attribute

Author: Sameer Saini Date Published: April 28, 2022

In this blog post, we will learn about the Selected attribute in HTML Option element. A dropdown list is created using the Select tag in HTML.

Read More

Create A REST Web API In ASP.NET Core 3.1 - ASP.NET Core CRUD Web API

Author: Sameer Saini Date Published: April 06, 2022

In this blog post, we will create an ASP.NET Core Web API from scratch step by step. We will follow RESTful principles and create CRUD operations and create an ASP.NET Core Web API in .NET Core version 3.1.</p><p>During the implementation, we install and use Entity Framework Core to connect to our SQL Server database and perform CRUD operations.

Read More

Char Array To String In C#

Author: Sameer Saini Date Published: April 06, 2022

In this blog post, we will learn how to convert a <b>Char Array To String</b> in C#. A char array is an array of character types. That means they hold a single character value in each of its elements.

Read More

Wait For X Seconds In C# - Add Delay In C#

Author: Sameer Saini Date Published: March 30, 2022

In this blog post, we will learn a couple of ways by which we can wait for X seconds in C# and delay execution. There can be a few use cases for adding a delay or for waiting for X seconds before you resume execution of your code in C# such as printing records back to the console, adding an explicit delay to mock or stub a slow running server or a backend service, etc.

Read More

C# Tab Character - Add Tab In String C#

Author: Sameer Saini Date Published: March 28, 2022

In this blog post, we will learn how we can add a tab in string in C#. There are a lot of places in your code where you would feel the need to add a tab character in C#.

Read More

C# Multiline String - Add New Line In String C#

Author: Sameer Saini Date Published: March 26, 2022

Let's learn to create a multiline string in C#. For readability purposes, sometimes we have to split a string into a multiline string in C#. To our luck, there are several ways by which we can have multiline strings in C#.

Read More

C# Double Question Mark Operator - Null-Coalescing Operator C#

Author: Sameer Saini Date Published: March 26, 2022

If you are reviewing a C# code and you've come across a double question mark operator (??), you must be wondering what does this double question mark operator does in C#. In this blog post, we will learn what this double question mark operator does and we will also see a few usages of this operator in some code examples.

Read More

C# Array Length - Get Length Of Array Using Array.Length() Property

Author: Sameer Saini Date Published: March 26, 2022

In this blog post, we will learn how we can get the <b>length of array</b> in C#. This is really easy and we will see how we can use the property on any array that you want to get the length or the count of elements for. Let's see how we can get the length of the array using a code example.

Read More

3 Ways To Convert An Array To List In C#

Author: Sameer Saini Date Published: March 25, 2022

In this blog post, we will convert an <b>Array To List in C#. If you are dealing with Arrays in a code base, you may end up converting that to a much more powerful List in C# for several reasons. For one, it's much easier to append items to a list than to an array and you can use the power of Linq in lists easily.

Read More

Pass Function As Parameter Using C#

Author: Sameer Saini Date Published: March 24, 2022

In this blog post, we will learn how we can pass a function as a parameter in C# or a method as a parameter in C#. Pass Function As A Parameter To Another Function In C# Using Func Delegate.

Read More

Get List Length C# - Get Count Of Elements In A List C#

Author: Sameer Saini Date Published: March 24, 2022

In some scenarios, we need to get the count of elements in a list in C# or the length of a list in C#. These are the cases where we need to check if the length or the number of elements in the list is greater than or less than some number.

Read More

Convert Stream To Byte Array In C#

Author: Sameer Saini Date Published: March 24, 2022

In this blog post, we will see how we can convert a stream to byte array in C# using the .ToArray() method available on the MemoryStream class. We will use the .ToArray() method available on the MemoryStream class and convert stream to byte array.

Read More

Build REST APIs with ASP.NET CORE WEB API & Entity Framework

Author: Sameer Saini Date Published: March 24, 2022

This is a complete guide to creating a highly scalable ASP.NET CORE RESTful WEB API using .NET Core Version 6 (.NET 6), Entity Framework Core and SQL Server database. This course is for all skill levels and is best suited for beginners and intermediate developers who have gained knowledge in C# and ASP.NET framework and want to use their skills to learn highly scalable WEB APIs using REST principles. In this WEB API course, we will use ASPNET Core Version 6 (also known as .NET 6) and create a RESTful WEB API.

Read More

How To Initialize Array In C#

Author: Sameer Saini Date Published: March 24, 2022

As we know an Array in C# is a collection of objects. This Array could be of any type, for example, a string array or an int Array. Before we can use an Array and do something with it like assign values or append values or iterate on it, we need to initialize the array.

Read More

Create ASP.NET Core WEB API CRUD With Angular UI

Author: Sameer Saini Date Published: March 15, 2022

In this blog post, we will create an ASP.NET CORE WEB API CRUD Application With Angular CRUD operations. We will use ASP.NET CORE 6 or .NET 6 to create our WEB API and we will connect our API to an ANGULAR 13 application. This Angular 13 application will perform CRUD operations on the ASP.NET CORE WEB API.

Read More

Get Random Number Between 1 and 100 C#

Author: Sameer Saini Date Published: March 07, 2022

In this blog post, we will get a random number between 1 and 100 using C#. We will use the Random class that C# provides us. We will instantiate the <b>Random</b> class and then provide a range to the .Next() method.

Read More

Add Or Append Item To An Array C#

Author: Sameer Saini Date Published: March 06, 2022

In this post, we will add to an array in C#. Adding an element to array means to add a new item or an element of type to an existing array. In C#, we have a few different options to add or append to an existing array.

Read More

Embed Google Forms In Website

Author: Sameer Saini Date Published: March 06, 2022

In this blog post, we will go step by step into creating and embedding a google form into a website. We can embed google forms in website for so many different reasons. We can embed google forms in HTML like a contact form, like a voting form, like a feedback form, etc.

Read More

Split String In C# - String.Split() Method In C#

Author: Sameer Saini Date Published: March 05, 2022

In our day-to-day scenarios, we sometimes end up in a scenario where we have to split a delimited string to a list. If you are using the C# language, splitting a string is an easy task. In this blog post, we will learn how we can split a string in C# using the <b>string.Split()</b> method and we will also use a delimiter such as a comma or a space to split the string into a list or an array.

Read More

Iterate An Enum In C# - Looping Through All Enum Values In C#

Author: Sameer Saini Date Published: March 02, 2022

We often find a use case where we have to iterate through the values of something to get the job done. This iteration of looping can be for some calculations or display stuff, but we always iterate on lists or arrays and get data out of each item in that list or array. In this blog post, we will use loops, but not on a list or array, we will iterate an enum today.

Read More

Join An Array In C#

Author: Sameer Saini Date Published: March 02, 2022

In this blog post, we will learn how we can join an array in C#. Joining an array means joining the values of the array using a delimiter. When we join an array in C#, we loop through all the values and insert a delimiter value (if any) to join and make the result. For example, an array ["John", "Julie", "Sameer"] would be joined to make a string "John,Julie,Sameer" if the delimiter was a comma value. How do we achieve this? In C#, we use the Join() method that is available to us in the sealed class String.

Read More

Find An Item In List Using LINQ - C#

Author: Sameer Saini Date Published: March 02, 2022

Have you been in a situation where you have a list and you have to find an item in the list? C# offers us an easy way to find an item in a list using the .Find() method. The Find() method searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire List.

Read More

Convert An Enum To String In C#

Author: Sameer Saini Date Published: March 02, 2022

In this blog post, we will convert an Enum to string in C#. An enumeration type (or enum type) is a value type defined by a set of named constants of the underlying integral numeric type. We can convert an enum to a string using the .ToString() method on the Enum.

Read More

Empty GUID In C# - Create Or Get An Empty GUID In C#

Author: Sameer Saini Date Published: February 28, 2022

In a C# ASP.NET website or application, sometimes we need to check if a GUID being passed is empty or not. Sometimes, we also need to generate an empty GUID for some different use cases. In C#, we can easily create an empty or default GUID using the GUID static class that the system namespace provides us. We can also compare a GUID value to check whether it's an empty GUID.

Read More

How To Read Text File Using C#

Author: Sameer Saini Date Published: February 28, 2022

If you want to learn how you can read text from a text file using C#, you have come to the right blog post. In this one, we will go step by step and see how easily we can read a text file using C#

Read More

Get Random Number Using C#

Author: Sameer Saini Date Published: February 28, 2022

C# gives us a class called Random that gives us a really easy way to create random numbers in between a range of 2 numbers (min and max). If no range is provided, the integer min and integer max values are taken. Note: The returned number or integer can be greater than or equal to min value but less than max value.

Read More

Get Current Directory In C#

Author: Sameer Saini Date Published: February 28, 2022

There are a few ways in which we can get the current directory of the application using C#. All of the below are running for a console application created using .NET 6 and returns the current directory the application is running under.

Read More

Delete A File If Exists Using C#

Author: Sameer Saini Date Published: February 28, 2022

Sometimes we have a delete a file or create a new one but we are just not sure if there is already a file that exists? In such a case, it's good practice to check if the file exists, and if it does, then delete the file.

Read More

Create An Email MailTo Link In HTML

Author: Sameer Saini Date Published: February 25, 2022

In this blog post, we will see how we can create mailto links in HTML with ease. MailTo links are anchor elements or links which open the default mail program and users can start creating the email subject and body using the default program.

Read More

How To Add A Delay In Javascript - SetTimeout Method

Author: Sameer Saini Date Published: February 25, 2022

There are some scenarios where we have to delay the execution of a method by a few milliseconds or a few seconds. A few use-cases of this could be delaying the disappearance of an alert or warning message by a few seconds. Another example could be redirecting a webpage to another webpage and telling the user that this webpage will be redirected in X number of seconds.

Read More

How To Remove Underline From A Link In HTML

Author: Sameer Saini Date Published: February 24, 2022

When developing a website, you might use anchor elements to create links in a website that might lead to a webpage internally or externally. By default, links have an underline below them.

Read More

Javascript Get Element By Class

Author: Sameer Saini Date Published: February 24, 2022

In a reactive website, you would need Javascript to interact with the DOM and dynamically add, delete or change elements. In such a case, you would have to select an element. You can select an element by its tag but then this selection will select all the elements for that tag. So sometimes you need to assign classes to elements and then make a selection of specific classes.

Read More

How To Redirect To Another Webpage URL In Javascript

Author: Sameer Saini Date Published: February 23, 2022

There are so many scenarios where we want to redirect from the current webpage to a URL that is in the same domain or sometimes on another domain. This can be redirected to a web page after login or registration. Javascript provides a few different ways through which we can redirect to a different URL or a webpage.

Read More

Add Google Analytics Tracking To A Website

Author: Sameer Saini Date Published: February 23, 2022

Have you created a new website or are the owner of an existing website and want to see how many people are coming to your website and what pages are they viewing? You have come to the right post. In this post, we will see how we can add Google Analytics to your website step by step and check your website's traffic and real-time information.

Read More

Add A Button OnClick Event In HTML and Javascript

Author: Sameer Saini Date Published: February 23, 2022

Buttons in HTML perform an action. This can be submitting a form, starting or stopping an operation, triggering a process, or just visually changing the website. All of the above happens when the user clicks a button. HTML and Javascript together provide us the functionality where you can add buttons to the website and then use Javascript to trigger the button.

Read More

How To Create A Multi Page Website In HTML

Author: Sameer Saini Date Published: February 23, 2022

There are two types of websites. One is a single-page website (not to be confused with a SPA) that has all its content in a single HTML web page or an HTML document. The other type is a website that has multiple pages (multiple HTML documents). Each HTML web page has different content in it. They might or might not share the common stylings, including the header and the footer elements.

Read More

Add Items To List C#

Author: Sameer Saini Date Published: February 22, 2022

A list represents a collection of strongly typed objects. This can be a list of integers, a list of strings, or a list of complex types. A list in C# is an easy way to maintain a collection of similar types and then using the functions that C# provides you can easily iterate on that list if you need to. There will be numerous use cases when you would need to add a new item to a list dynamically. For example, if you have a list of years that are from 2000 to 2020, now it's time to add the next 10 years to that list. You would need to dynamically add items to the list so that you can use them.

Read More

How To Play Wordle

Author: Sameer Saini Date Published: February 22, 2022

What is wordle? A common question that people ask other people or search online when they hear their friends or colleagues talking about it in meetings, chats, online forums, etc. Wordle is an online game that got launched last year in October and since then its popularity has not come down even one bit. Wordle is a game in which the user has to guess a five-letter word in the attempts provided. The simple user interface of the game provides five boxes in which the player has to type characters to form a word.

Read More

How To Insert An Image In HTML - [Source Code]

Author: Sameer Saini Date Published: February 21, 2022

In this modern-day world, a website is nothing without an image. We have seen that websites in the late 90s or early 2000s had more text and less of images. This is not true today, every web page has lots and lots of images that portray their product, their business, or a blog in a much nicer and more descriptive way. Using graphics and infographics, web pages can convey their message in a great way without using too many words. Even in this blog post or other blog posts in this blog, we use a lot of images frequently with text to explain our topic.

Read More

Full Screen Overlay Navigation Bar Using HTML, CSS and JAVASCRIPT [Free Source Code]

Author: Sameer Saini Date Published: February 21, 2022

In this blog post, we are going to create a fancy navigation bar using HTML, CSS, and Javascript. This navigation menu would be not just a regular navbar, but, a full-screen overlay navigation menu. This will be a responsive navigation bar menu that will be responsive for both mobile and desktop displays. It will be really fun to code this and navigation bars like these create an amazing impression of your website in the user's head.

Read More

Create A Dropdown List In HTML

Author: Sameer Saini Date Published: February 21, 2022

Dropdown lists if you have seen them before on other websites are extremely powerful. They provide the user a clear list to select a single option from the list of options that the dropdown menu provides. They provide a good overall user experience. An example of a dropdown list in a general everyday website is the month picker. Using a dropdown list you can give the user to select the month of their birth.

Read More

Full Screen Background Video For Your Website Using HTML and CSS

Author: Sameer Saini Date Published: February 19, 2022

A lot of websites that are rich in user experience use a full-screen video background to provide rich media content that supports their website. This can be a product demonstration, user reviews, etc. The full-screen video background looks amazing and achieves its purpose.

Read More

Create A Countdown Timer Using HTML, CSS and Javascript - Free Source Code

Author: Sameer Saini Date Published: February 19, 2022

A countdown timer as we have seen in many places including one in our mobile phones is a timer that ticks backward from a given time to zero. A countdown timer has several benefits in real life too. This can be used as an alarm to see if food is properly cooked or not, to track activity, and numerous other things. Although we have a countdown timer in our mobile phone, creating a countdown timer from scratch using HTML, CSS and Javascript can be so much fun. This can be a mini project that you can add to your portfolio.

Read More

Create A Hero Banner Image Using HTML and CSS

Author: Sameer Saini Date Published: February 19, 2022

A hero banner is a big size image (sometimes a full-screen image) on the top of the website. The purpose of this hero image is to basically present the overall goal of the website or business. This hero image banner may or may not have overlay text on top of it. It also sometimes has a call to action button so that users coming on to the website click on the call to action button on the hero banner displaying the clear motive of the website or the business.

Read More

Animated Full Page Search Bar Using HTML, CSS and Javascript

Author: Sameer Saini Date Published: February 18, 2022

Medium and Big enterprise-level websites all require a search functionality in their website so that users can search for something particular across their website. This search functionality provides a pleasant user experience and users land straight to the resource they are looking for. In this blog post, we will create an animated full-page search bar for our website using HTML, CSS, and Javascript. First, we will start by creating the HTML and CSS for the header which has the search button in the header.

Read More

Toggle Password Visibility Using HTML, CSS and Javascript [Source Code]

Author: Sameer Saini Date Published: February 18, 2022

You might have come across this functionality in so many websites, where you see a toggle button that toggles the password visibility for you. Some websites have this as a "Show Password" button, some have a "Password Eye" icon which suggests you can click or hover over it and you will be able to see the password you typed. This "Toggle Password Visibility" is an amazing functionality when you have to give a final look at the password that you just typed.

Read More

How To Download and Install Visual Studio - Step By Step

Author: Sameer Saini Date Published: February 17, 2022

If you are new to web development or desktop development using C# or F# and or about to use the ASP.NET framework, chances are you might be already using visual studio as your integrated development environment (IDE). If this is your first time hearing about Visual Studio, it is the best comprehensive IDE for .NET and C++ developers on Windows, Mac, and Linux. Fully packed with a sweet array of tools and features to elevate and enhance every stage of software development. Now that you know that you need to download and install Visual Studio for your development work, let's go ahead and go step by step into the download and install process.

Read More

Host A Static Website On Github Pages And Add A Custom Domain

Author: Sameer Saini Date Published: February 13, 2022

For developers and users who don't want to use the CLI to publish their website, there is another great option where we can host a static website on the internet. This option is Github Pages. Github offers a great way to host a website using its user interface. Github pages offer free web hosting of static websites and in this free plan, you can also add custom domains to your websites.

Read More

Image Hosting With Google Drive - Use Google Drive As A Image Hosting Provider For Your Website

Author: Sameer Saini Date Published: February 13, 2022

Hosting images on the internet can be a costly affair. If you want to host and serve your images for your website over the internet, you can use your web hosting provider. But as an alternate, there can be an easier way to publish and use images for your website. Google Drive can be an amazing alternate where you can upload your images and use them in your website.

Read More

Redirect WWW To Non WWW Using Web.Config In IIS For ASP.NET Websites

Author: Sameer Saini Date Published: February 10, 2022

SEO experts from Google also suggest that even though they treat both URLs as the same, you should have everything pointing to one URL, it doesn't matter which one. You can choose for your website to go to WWW all the time or you can configure it to redirect to non-WWW. This will achieve consistency. Now that we have understood why it's important to redirect WWW to non-WWW or the other way, let's see how we can do it.

Read More

Create A Login Page Form Using HTML And CSS - With Source Code

Author: Sameer Saini Date Published: February 08, 2022

Having a beautiful login page is essential. Users have to instantaneously like your login page to give that best first impression. In today's blog post, we will create a beautiful yet simple login web page using HTML and CSS only and I will also leave the source code so you can use it for your website.

Read More

Create A Free Business Website With Google - Add Your Business To Google

Author: Sameer Saini Date Published: February 08, 2022

There are plenty of website builders, freelance individuals available who can create your website. But most of them are usually paid. You have to pay something to somebody to create yourself a website, especially if you are from a non-development background. But, in this blog post, we will see how easy it is to create a website for your business for free. We will use Google business and create a free website for ourselves. Just follow the blog post step by step.

Read More

Create and Embed Google Maps To Your Website - Google Maps Javascript API Tutorial

Author: Sameer Saini Date Published: February 07, 2022

In so many versatile ways, almost every website needs maps in some shape or form. The use cases for these could be infinite. Business websites use maps to show their business location to let potential customers where they are located. On the medical side, we are seeing maps used to show clusters of covid cases for regions and countries. I know this is sad but technology helps us to protect ourselves better. So now that we know how maps could be so important in websites when we think about maps, the first thing that comes to our mind is Google Maps. Google maps have taken over the maps market by far.

Read More

Simple Top Navigation Menu Using HTML and CSS - [With Source Code]

Author: Sameer Saini Date Published: February 04, 2022

Every website needs some sort of navigation so that users coming onto this web page can easily navigate between the pages of the website. There are so many different navigation menus one can create like side navigation on a website, top navigation that stays on the top, maybe, one on the right side?

Read More

Embed A Youtube Video In your HTML Website In 2 Simple Steps

Author: Sameer Saini Date Published: February 01, 2022

Something as simple as adding a youtube video to your website can be the striking difference between the user staying on your website or just moving away from it. Embedding a youtube video by a link that nobody will click is useless but if the viewer can see a clear youtube video right there in your HTML Website could be amazing.

Read More