What are the Semantic codes in html
Sementic in HTML helps the screen readers to find the main information from the website. also Sementic tag helps developer to find error on the
Website Designing Blog
Sementic in HTML helps the screen readers to find the main information from the website. also Sementic tag helps developer to find error on the
If you declear a variable using var and regular function, declaration of it automatically most of the top of it’s scope. Hosting work with only
<html> <body> <script> var a = [3,5,7,8]; var ra = []; for (var i = a.length-1; i>=0; i–) { var reverse = a[i]; ra.push(reverse); }
The lifecycle of an HTML page has three important events: DOMContentLoaded – the browser fully loaded HTML, and the DOM tree is built, but external resources
Writing array code: <script> var x =[23, 34, 43, 44, 43]; for (var i = 0; i < 4; i++) document.write(x[i]); </script> var
Onclick Event <script> function myclick() { var x = document.getElementById(“msg”).value; document.getElementById(“demo”).innerHTML = x; } </script> Onclick Events Submit <script> function myclick(){ var x = document.getElementById(“name”).value;