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)
C# .Net Fundamentals interview questions
1. Basic .NET Concepts What is the .NET Framework ? A software framework by Microsoft that provides a runtime (CLR) and libraries for bui...
Best for you
-
Error Solution get is undefined Initialize FormGroup before accessing it. Cannot read 'value' of null Verify control names and ...
-
1. When HTML is Generated SSR : HTML is dynamically generated on each request by the server. The server processes the request, fetch...
-
Demo URL @Components @Directives For register component we use @Component meta-data annotation. For register directives we use @Directive ...
-
Temporal Dead Zone is a behaviour that occurs with variables declared using let and const keywords. It is a behaviour where we try to ...
-
1. NULL Handling Question : What is the result of SELECT NULL = NULL in SQL Server? Answer : It returns NULL , not TRUE or FALSE . U...
-
Method 1 <script> let numbers_array = [11, 22, 33, 54, 55]; console.log( "Original Array: " ); conso...
-
Scope in JS, determines the accessibility of variables and functions at various parts in one’s code. In general terms, the scope will let ...
-
Implement Conditional Rendering Wrap the code that relies on the window object inside a conditional check. We’ll use the (typeof window !==...
-
Example : function reverse(str) { let arr = str.split(""); for (let i = 0, j = arr.length - 1; i < j; i++, j--) { [ar...