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
-
We’ve all heard of the “rule” that says it takes 10,000 hours to become an expert in any field. Not only might that be intimidating for pe...
-
Man, I hear you! Choosing is hard. I deal with the same problem over and over again while deciding which language is more suitable to the ...
-
A callback is a function that will be executed after another function gets executed. In javascript, functions are treated as first-class c...
-
I feel you, bro. Web development is one colossal clusterfuck of complications. This is especially true with JavaScript, Angular, React, etc...
-
We can 5 ways to create objects in JavaScript. Lets understand how to Create it... Demo URL 'use strict' ; Example 1 var ...
-
Solution This article about Javascript Strict Mode might interest you: John Resig - ECMAScript 5 Strict Mode, JSON, and More To quote so...
-
These tutorials walk you through building an OS from scratch: https://os.phil-opp.com/ — Build a Rust-based OS https://littleosbook....
-
The difference is that functionOne is a function expression and so only defined when that line is reached, whereas functionTwo is a func...
-
Before the ES6 version of javascript, only the keyword var was used to declare variables. With the ES6 Version, keywords let and const wer...
