Utkarsh Dhimanutkarshdhiman.hashnode.dev·Aug 29, 2024How to Set Up Absolute Imports in Node.js and TypeScript with NodemonTLDR Switching from relative to absolute imports in TypeScript can greatly enhance code readability and manageability. By updating the tsconfig.json settings to use a fixed path from your project's root, you can simplify import statements. Additiona...Discuss·31 readsExpress
Adebitan Damoladamia.hashnode.dev·Jul 8, 2024Mastering the Maze: Relative vs. Absolute Paths for Images in ReactHave you ever encountered a situation whereby your web application looks perfect but when you navigate to a different nested route and reload the page, some of your imported images and icons surprisingly disappear? Fear not, for you are not alone in ...Discuss·2 likesabsolute-path
AMINE ABAIDIcodewithamine.hashnode.dev·May 4, 2024Choosing Between Absolute and Relative CSS Units: A Comprehensive GuideWhat are absolute and relative values? Absolute Values: These are values that remain constant regardless of external factors. For example, setting the width of a paragraph to 16px means it will always stay at 16px and not change, irrespective of ot...Discuss·11 likesCSS
AccDevabojeonline.com·Mar 29, 2024HTML 102: Pre-formatted tags, Comments & HyperlinksRefresher Quiz Before we proceed with our lesson for the day, let's take a quick refresher. Try to answer the questions yourself first before toggling for answers. What does HTML stand for? HTML stands for HyperText Markup Language. What is the pu...DiscussFront End Development: The Accidental Developer SeriesHTML5
Oluwasegun Idowuengrshege.hashnode.dev·Jan 17, 2024Ep. 27: HTML 5Udemy Course: Complete Web & Mobile Designer; UI/UX, Figma, +more by Andrei Neagoie & Daniel Schifano. Episode 27: HTML 5 Introduction Yippee! Finally we are now in the coding sections of the course. We will start off from HTML. But, before you can t...Discuss·10 likes·35 readsProduct DesignAnchor Tags
Amanuelamexabee.hashnode.dev·Jul 12, 2023Hyperlinks in HTMLIn HTML, links and references play a crucial role in navigating between different pages or different sections of the same page. In this article, we will go through the process of creating various types of links and references within your HTML documen...Discusshyperlink
Balveer Singh Raobalveersinghrao.hashnode.dev·May 12, 2023What's the difference between `./` and `../` in relative pathsIn the file system, relative path means path relative to your current working directory. The symbols ./ and ../ are used to represent the current directory and parent directory, respectively. Here's the difference between the two: ./ refers to the c...Discuss·2 likesrelative path