Check EDR status Click
EXCEPTIONAL DATA REPORT (EDR) STATUS
Hi, I’m Vijay Chauhan, a web developer from India in love with all things internet. Online since 2015.
why we use header in top HTML
The <header> element represents a container for introductory content or a set of navigational links. A <header> element typically contains: one or more heading elements (<h1> - <h6>) logo or icon.
For Example
<!DOCTYPE html>
<html>
<body>
<article>
<header>
<h1>A heading here</h1>
<p>Posted by John Doe</p>
<p>Some additional information here</p>
</header>
<p>Lorem Ipsum dolor set amet....</p>
</article>
</body>
</html>
Hi, I’m Vijay Chauhan, a web developer from India in love with all things internet. Online since 2015.
Subscribe to:
Posts (Atom)
SQL Server — Core Concepts with examples
Data Definition Language (DDL) : CREATE , ALTER , DROP (tables, views, procedures, triggers). Data Manipulation Language (DML) : SELECT ,...
Best for you
-
Angular This covers the vast majority of TypeScript features used in modern Angular and enterprise web applications. Mastering these topic...
-
Data Definition Language (DDL) : CREATE , ALTER , DROP (tables, views, procedures, triggers). Data Manipulation Language (DML) : SELECT ,...
-
Every People Can Code Everyone can do coding but to become a successful developer, you have to have some good habits. So here are some of ...
-
Recursion is a technique to iterate over an operation by having a function call itself repeatedly until it arrives at a result. function ...
-
Solution To delete a key regardless of whether it is in the dictionary, use the two-argument form of dict.pop() : my_dict.pop( 'key...
-
Error Handling : If there are errors that aren't properly handled, it can cause delays during the server-side rendering process. The s...
-
Goal: Import All Tables from Production into UAT (One Time) 🔧 Method 1: Generate Scripts (Schema + Data) This is the cleanest way to ex...
-
The ternary operator is a shorthand for if-else statements. Example: let number = 10; let result = (number % 2 === 0) ? "Even" ...
-
Write DRY Code: If you are doing coding so You Don't Repeat YourSelf is a Software Development principle the main which is to reduce re...
