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
-
To extract response headers with Angular's HttpClient , you can observe the full response using the observe: 'response' option...
-
Arrow functions were introduced in the ES6 version of javascript. They provide us with a new and shorter syntax for declaring functions. Arr...
-
Temporal Dead Zone is a behaviour that occurs with variables declared using let and const keywords. It is a behaviour where we try to ...
-
Introduced in ES6 version, generator functions are a special class of functions. They can be stopped midway and then continue from where i...
-
In Angular, input signals are a new way to handle state changes and data binding in a more reactive and efficient manner, compared to the tr...
-
Both rest parameter and spread operator were introduced in the ES6 version of javascript. Rest parameter ( … ) It provides an improved way...
-
An Immediately Invoked Function ( known as IIFE and pronounced as IIFY) is a function that runs as soon as it is defined. Syntax of IIFE :...
-
Constructor functions are used to create objects in javascript. When do we use constructor functions? If we want to create multiple object...
-
In JavaScript, expressions are pieces of code that evaluate to a value. They can be as simple as a single value or as complex as a combinati...
-
1. Custom Dependencies : If you need to provide a non-class dependency (like a string, number, or object), InjectionToken is used to crea...
