- javascript1.png (2.4 KiB) Viewed 4162 times
Lesson 1
Re: Lesson 1
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.
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
Code: Select all
<!DOCTYPE html>
<html>
<head>
<script language="JavaScript">
document.write('<br>');
document.write("hello");
</script>
</head>
<body>
</body>
</html>