© 2023 Hashnode
#html
Let us first understand the concept of margin and padding in HTML elements and why we use them. Padding is a space between the content and the border, or, in other words, it is a space between the HTML elements from the inside. It is used t…
HTML, or Hypertext Markup Language, is a standard markup language used to create and design web pages. HTML elements are the building blocks of a web page, and they give structure and meaning to its c…
Selectors are the basic concept for styling HTML elements. Selectors are used to specifying which HTML elements will receive which styles. There are different types of selectors such as class type, ID type, and, attributes type, etc Differe…
I added this effect to my website and here's how I did it the HTML is really simple <div class="scrolling"> <p>i like</p> <p id="element">CSS</p> </div> and for the CSS part, we have this @k…
HTML is a hypertext markup language used to create web pages and web applications. HyperText: - hypertext simply means “text within the text” A text has a link within it. Hypertext is a way to link tw…
In this tutorial, I will show you how to install and use Tailwind CSS with Vite and Vanilla HTML/JavaScript in Windows 11 Before we begin, make sure you have Node.js installed in your system Step 1 (Create Vite Project) a)Open up your favor…
The best way to improve your coding skills is to code daily. In this article, we look at iCodeThis, a new FREE platform that offers daily challenges to help you become the best developer you can be! …
HTML stands for HyperText Markup Language. It is the standard markup language used for creating web pages and web applications. HTML provides the structure and content of a web page, while other techn…
Recently I moved the landing page of Writings from the static template I was using to Carrd. It was possibly one of the best decisions in 2022 as it significantly lowered the maintenance cost. Just li…
What is HTML? HTML stands for Hypertext Markup Language. HTML describes the structure of a web page. We can say HTML is a skeleton of a web body. It is a markup language, and almost every website that…