Lesson 1

Post Reply
admin
Site Admin
Posts: 3118
Joined: Wed Dec 11, 2019 8:31 am
Has thanked: 4 times

Re: Lesson 1

Post by admin »

javascript1.png
javascript1.png (2.4 KiB) Viewed 723 times
Study JavaScript on our website by solving programming tasks.
admin
Site Admin
Posts: 3118
Joined: Wed Dec 11, 2019 8:31 am
Has thanked: 4 times

Lesson 1

Post by admin »

Run your code in an online sandbox on our website.
Study JavaScript
admin
Site Admin
Posts: 3118
Joined: Wed Dec 11, 2019 8:31 am
Has thanked: 4 times

Re: Lesson 1

Post by admin »

Download and install this free html and JavaScript editor for Windows "CoffeeCup Free HTML Editor"
https://www.coffeecup.com/free-editor/
Click "Download our Free Html Editor"
Download and install "HTMLEditor-free-win-en-...exe"
You can use a free version of CoffeeCup Editor all the time even the program may recommend you to use paid version.
Click the button "No, I'd rather just use the free version".
Create a New Html File, add tags and some text to a file, press the button F12 to run your program in the same window as your code or Ctrl+F9 (Ctrl+F5) to open it in a browser.
admin
Site Admin
Posts: 3118
Joined: Wed Dec 11, 2019 8:31 am
Has thanked: 4 times

Re: Lesson 1

Post by admin »

Code: Select all

<!DOCTYPE html>
<html>
<head>
<script language="JavaScript">
document.write('<br>');
document.write("hello");
</script>
</head>
<body>

</body>
</html>
Post Reply