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:
Comments (Atom)
JavaScript + Angular-compatible version of loan amortization calculator that you can integrate into an Angular component or service
JavaScript Version of Loan Amortization 1. Loan Calculator Function (Pure JS/TS) export function calculateLoanSchedule ( principal:...
Best for you
-
1. Encapsulation Encapsulation is the bundling of data and methods that operate on that data within a single unit (class). It restricts dire...
-
javascript // Function to download multiple images function downloadImages ( imageUrls ) { imageUrls. forEach ( ( url, index ) => ...
-
To extract response headers with Angular's HttpClient , you can observe the full response using the observe: 'response' option...
-
We can 5 ways to create objects in JavaScript. Lets understand how to Create it... Demo URL 'use strict' ; Example 1 var ...
-
Constructor functions are used to create objects in javascript. When do we use constructor functions? If we want to create multiple object...
-
DOM stands for Document Object Model. DOM is a programming interface for HTML and XML documents. When the browser tries to render a HTML d...
-
Tech Stack Express.js MongoDB + Mongoose JWT for auth bcrypt for password hashing express-validator for validation helme...
-
In Angular 17, Signals provide a reactive way to manage state and facilitate communication between components. The update() update() AP...
-
In Angular (or any Node.js project), both package.json and package-lock.json package.json : Purpose : Defines the project's metadata, i...
