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
-
Arrow functions were introduced in the ES6 version of javascript. They provide us with a new and shorter syntax for declaring functions. Arr...
-
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...
-
Both rest parameter and spread operator were introduced in the ES6 version of javascript. Rest parameter ( … ) It provides an improved way...
-
async function checkUserExists(email, phone) { try { const results = { exists: false, byEmail: false, byPhone: false }; // C...
-
Try doing: RecyclerView v = ( RecyclerView ) findViewById (...); v . setNestedScrollingEnabled ( false ); As an alternative, you can ...
-
Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects. These objects are instances of classes and can...
-
If you enable GZIP compression in Apache web server, then it will compress data while sending responses, improve website speed & perfo...
-
Question : How do you create and use dynamic components in Angular? Answer : Dynamic components are created at runtime. You can achieve th...
-
The newest debate in town is whether you should keep your services in a single repository or multiple small repositories. The idea of mu...
