diff --git a/1-js/2-first-steps/01-hello-world/1-hello-alert/solution.md b/1-js/2-first-steps/01-hello-world/1-hello-alert/solution.md new file mode 100644 index 00000000..e69de29b diff --git a/1-js/2-first-steps/01-hello-world/1-hello-alert/solution.view/index.html b/1-js/2-first-steps/01-hello-world/1-hello-alert/solution.view/index.html new file mode 100644 index 00000000..45e6744b --- /dev/null +++ b/1-js/2-first-steps/01-hello-world/1-hello-alert/solution.view/index.html @@ -0,0 +1,12 @@ + + + +
+ + + + + + \ No newline at end of file diff --git a/1-js/2-first-steps/01-hello-world/1-hello-alert/task.md b/1-js/2-first-steps/01-hello-world/1-hello-alert/task.md new file mode 100644 index 00000000..afed6a91 --- /dev/null +++ b/1-js/2-first-steps/01-hello-world/1-hello-alert/task.md @@ -0,0 +1,12 @@ +importance: 5 + +--- + +# Show an alert + +Create a page that shows a message "I'm JavaScript!". + +Do it in a sandbox, or on your hard drive, doesn't matter, just ensure that it works. + +[demo src="solution"] + diff --git a/1-js/2-first-steps/01-hello-world/article.md b/1-js/2-first-steps/01-hello-world/article.md new file mode 100644 index 00000000..9ea5b652 --- /dev/null +++ b/1-js/2-first-steps/01-hello-world/article.md @@ -0,0 +1,85 @@ +# Hello, world! + +In this chapter we'll create a simple script and see it working. + +[cut] + +## The "script" tag + +```smart header="What if I want to move faster?" +In the case if the reader has developed with JavaScript already or has a lot of experience in another language, he can skip detailed explanatins and jump to...After the script.
+ +