The Secret Highway of Data: Tracked!🕵️ When You Search "Netflix"... What Actually Happens? You go to Google.You type "Netflix".You click the first link. And just like that — https://www.netflix.com opens. But pause. Think for a second. What just happened?How did that website open?And...Jul 14, 2025
Concepts and Terms in HTML and CSSSemantic and Non-Semantic Tags Semantic Tags are the tags that have a meaning in themselves and tell us about the content inside the tags. E.g form, header tags Non-Semantic Tags are the tags that do not tell about the content written inside them....Sep 18, 2021
Markdown Files.md file is known as a Markdown file. It's a file that simply converts a simple text to an HTML file. Some basic syntax : HEADING: # Heading 1 => <h1> </h1> ## Heading 2 => <h2></h2> . . . ###### Heading 6 => <h6></h6> // # heading 1 - Correct /...Aug 7, 2021
Git and GithubGithub is like your class teacher, git is like your subject teacher and you being the code/record/file. So, as it goes in the school hierarchy the same goes for git, GitHub, and code. GIT: As your teacher keeps your record, git keeps the record of y...Aug 7, 2021
Basic Terms Before Starting ProgrammingLet's walk through some of the terms used widely in a programming language : Object - It's used to store different values in the form of key and value pairs. // Syntax var obj ={ key : value } // If a box has different colors of balls, their nu...Aug 1, 2021
All You Need For The First CLI AppWhat is a CLI? CLI stands for COMMAND LINE INTERFACE . As the name suggests, it is used for interacting using some commands. Simply, it is a way of interaction with the user and browser without any graphics i.e majorly in plain text Anything you do...Aug 1, 2021