Page 1 of 1

Re: Lesson 1

Posted: Mon Apr 12, 2021 6:07 pm
by admin
javascript1.png
javascript1.png (2.4 KiB) Viewed 2429 times
Study JavaScript on our website by solving programming tasks.

Lesson 1

Posted: Wed Apr 14, 2021 1:46 pm
by admin
Run your code in an online sandbox on our website.
Study JavaScript

Re: Lesson 1

Posted: Thu Jul 22, 2021 12:47 pm
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.

Re: Lesson 1

Posted: Fri Sep 03, 2021 1:26 am
by admin

Code: Select all

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

</body>
</html>