HTML_CSS_TUT Telegram 712
Forwarded from JavaScript Tutorial
1. Open a text editor such as Notepad or Sublime Text.

2. Type the following code:

<!DOCTYPE html>
<html>
<body>

<h2>My First JavaScript Program</h2>

<button onclick="myFunction()">Click me</button>

<p id="demo"></p>

<script>
function myFunction() {
  document.getElementById("demo").innerHTML = "Hello World!";
}
</script>

</body>
</html>


3. Save the file with a .html extension.

4. Open the file in a web browser.

5. Click the "Click me" button.

6. You should see the text "Hello World!" appear on the screen.

This program uses JavaScript to change the text of an HTML element when a button is clicked. It's a simple example, but it demonstrates the basic structure of a JavaScript program and how it can interact with HTML elements on a web page. From here, you can continue to learn and experiment with JavaScript to create more complex and interactive programs.
@javascript_tut



tgoop.com/html_css_tut/712
Create:
Last Update:

1. Open a text editor such as Notepad or Sublime Text.

2. Type the following code:

<!DOCTYPE html>
<html>
<body>

<h2>My First JavaScript Program</h2>

<button onclick="myFunction()">Click me</button>

<p id="demo"></p>

<script>
function myFunction() {
  document.getElementById("demo").innerHTML = "Hello World!";
}
</script>

</body>
</html>


3. Save the file with a .html extension.

4. Open the file in a web browser.

5. Click the "Click me" button.

6. You should see the text "Hello World!" appear on the screen.

This program uses JavaScript to change the text of an HTML element when a button is clicked. It's a simple example, but it demonstrates the basic structure of a JavaScript program and how it can interact with HTML elements on a web page. From here, you can continue to learn and experiment with JavaScript to create more complex and interactive programs.
@javascript_tut

BY Coding Tutorials




Share with your friend now:
tgoop.com/html_css_tut/712

View MORE
Open in Telegram


Telegram News

Date: |

Just at this time, Bitcoin and the broader crypto market have dropped to new 2022 lows. The Bitcoin price has tanked 10 percent dropping to $20,000. On the other hand, the altcoin space is witnessing even more brutal correction. Bitcoin has dropped nearly 60 percent year-to-date and more than 70 percent since its all-time high in November 2021. Hashtags 5Telegram Channel avatar size/dimensions Don’t publish new content at nighttime. Since not all users disable notifications for the night, you risk inadvertently disturbing them. Telegram has announced a number of measures aiming to tackle the spread of disinformation through its platform in Brazil. These features are part of an agreement between the platform and the country's authorities ahead of the elections in October.
from us


Telegram Coding Tutorials
FROM American