rocket

html Makes Html Pages More Dynamic & Interactive

  • Web html, css, javascript, php, python, sql, jquery, xml, ajax, bootstrap.
  • Online web design, along with everything you need for a complete website.

JavaScript Makes Html Pages More Dynamic & Interactive.JavaScript makes html pages more dynamic and interactive,JavaScript, also abbreviated to JS, is a programming language used in web development. As one of the core technologies of the web alongside HTML and CSS, JavaScript is used to make webpages interactive and to build web apps. When working with files for the web, JavaScript needs to be loaded and run alongside HTML markup. This can be done either inline within an HTML document or in a separate file that the browser will download alongside the HTML document.

            16

top
JavaScript can change the style of an HTML element

<script>
function test() {
  document.getElementById("demo").style.fontSize = "25px"; 
  document.getElementById("demo").style.color = "white";
  document.getElementById("demo").style.backgroundColor = "#ff3800";        
}
</script>
<p id="demo">JavaScript can change the style of an HTML element</p>
<button type="button" onclick="test()">Click Me!</button><p>
JavaScript changes the value of the src (source) attribute of an image
light-off


<script>
function light(sw) {
  var pic;
  if (sw == 0) {
    pic = "https://www.netbax.net/netbax_files/light-off.png"
  } else {
    pic = "https://www.netbax.net/netbax_files/light.png"
  }
  document.getElementById('light').src = pic;
}
</script>

<img id="light" src="https://www.netbax.net/netbax_files/light-off.png" width="50" height="90" alt="light-off" title="light-off">

<p>
<button type="button" onclick="light(1)">Light On</button>
<button type="button" onclick="light(0)">Light Off</button>
</p>
Date and Time JavaScript


<button type="button"
onclick="document.getElementById('date').innerHTML = Date()">
Click me to display Date and Time</button>
<p id="date"></p></button>
<p id="demo"></p>

Skills assessment. Although the years working on a skill can provide an indication of maturity and expertise gained, this alone is not enough. Different people have different levels of gaining knowledge and expertise and there are people that have a natural inclination to some specific skills.

HTML5
100%
CSS3
100%
JAVASCRIPT
100%
PHP
100%
JQUERY
100%
WORDPRESS
100%
SQL
100%
XML
100%
DESIGN & DEVELOPMENT
⭐⭐⭐⭐⭐  Best Seller
100%
PHOTO MAKER
100%
PHOTOSHOP
100%
SEO
100%