Check EDR status Click
EXCEPTIONAL DATA REPORT (EDR) STATUS

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>

Subscribe to:
Posts (Atom)
Understanding Array Swapping in JavaScript Step-by-Step Guide
1. Basic Swap (Using Temporary Variable) Concept : Use a temporary variable to hold one value during the swap. javascript // Step 1: Initi...
Best for you
-
Error : an error occurred while making the http request to url . this could be due to the fact that the server certificate is not configu...
-
Constructor functions are used to create objects in javascript. When do we use constructor functions? If we want to create multiple object...
-
In JavaScript, you can check if a value exists in an array using several methods. Here are a few common ways: Using includes() Method : Th...
-
If you enable GZIP compression in Apache web server, then it will compress data while sending responses, improve website speed & perfo...
-
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="...
-
Change permission to UPLOAD file into upload folder on UBUNTU Read + Write sudo chmod -R a+rw images/ Read + Write + Execute sudo chmod -R...
-
Temporal Dead Zone is a behaviour that occurs with variables declared using let and const keywords. It is a behaviour where we try to ...
-
For making MailWatch work with Debian 11 and PHP 8, I had Fixed few code-file to avoid error : PHP Fatal error: Array and string offset ac...
-
JavaScript continues to evolve, and in the latest ECMAScript proposals and releases (as of ECMAScript 2024), several enhancements have been ...