HTML & CSS
HTML (Hyper Text Markup Language) is used for front-end web development on the client side. CSS (Cascading Style Sheet) is used for decorating the blocks of HTML code and for enhancing the user experience.
How to Check if Array is Empty in jQuery/Javascript?
This is a very common question. And while working on a project, at least one time you will come across the situation where you have to check whether the given JavaScript array is...
How to add Margin and Padding in Bootstrap?
Nowadays Bootstrap plays a major role in web development. If you are font-end or web developer knowing bootstrap will be useful. Bootstrap is high in demand. Almost all the...
One-Line HTML Code to Add Favicon for Your Website
Setting a favicon for your website is not only good for the user experience but also for SEO optimization. And it does not require much effort. A simple one-line HTML tag can...
Remove Scrollbar in Textarea and Auto-adjust Height (Resizing)
Usually, the height and the width of the text area are set using the CSS attributes width and height with the values in pixels. If the length of the content is bigger than the...
How to indent First/All Line of Paragraph in HTML and CSS?
Do you want add space at the beginning of the first line of the paragraph? Beginning space is also called as indentation. So it is similar to indenting the first line of the...
Hide/Show Password using Eye icon in HTML and JavaScript
In this tutorial, I will learn how to hide and show password using eye icon in HTML and JavaScript. I implemented it for one of my projects as below. This very useful...
CSS to add Image Box Shadow (at Bottom, Top, Right, Left)
In this tutorial, you are going to learn simple CSS tricks to add shadow to images. You can use a box-shadow CSS property to add shadow to PNG images. CSS to Add Image Box...
Novi HTML Builder | Most Reasonable Solution for Web Developers
Creating an HTML website is reasonable. HTML websites are adaptable to any kind of device. They are compatible with all browsers. Plus, they are lightweight. Search engines often...
[Step-by-step] How to add CSS file to HTML | Source Code Example
In an earlier tutorial, we have seen writing your first HTML program. In this tuturoal, we will see how you can add CSS file to HTML code. Let's start with the...