CLChintha Lalithainbhanu24.hashnode.dev·Sep 5, 2024 · 9 min readSQL (Structured Query Language)What is SQL? SQL refers to Structured Query Language to interact with the database. With SQL we can add data, retrieve data, change/ modify data in the data and also we can delete the data in the database. So let's know what is data and database? Dat...00
CLChintha Lalithainbhanu24.hashnode.dev·Aug 13, 2024 · 8 min readCSS Checklist: Essential Concepts and Techniques for Web Developers1. Do you know how to include CSS in a webpage? CSS can be included in a webpage in three main ways: Inline CSS: Directly within HTML elements using the style attribute. <p style="color: red;">This is a red text.</p> Internal CSS: Within a <styl...00
CLChintha Lalithainbhanu24.hashnode.dev·Aug 13, 2024 · 10 min readEssential HTML Knowledge: A Comprehensive Checklist for Web Developers1. Do you know what HTML is and what it stands for? HTML stands for HyperText Markup Language. It is the standard language used to create and design web pages. HTML describes the structure of web pages using markup, which consists of elements and tag...00
CLChintha Lalithainbhanu24.hashnode.dev·Jul 20, 2024 · 9 min readAsynchronous JavaScriptAsynchronous JavaScript is a programming technique used to handle tasks that take time to complete without blocking the execution of other code. This is crucial for creating responsive and efficient web applications, where certain tasks like network ...00