commit 098ffc7d778ad3870255f371e1a2064ba7bb5ccd Author: Gregor Wuest Date: Thu May 21 11:01:46 2020 +0200 Initial commit diff --git a/css/notes_app.css b/css/notes_app.css new file mode 100644 index 0000000..dbe9e7f --- /dev/null +++ b/css/notes_app.css @@ -0,0 +1,3 @@ +h1 { + color:green +} \ No newline at end of file diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..e3b02df --- /dev/null +++ b/html/index.html @@ -0,0 +1,14 @@ + + + + + + Document + + + + +

Hello World

+

Whats the matter ?

+ + \ No newline at end of file diff --git a/scripts/notes_app.js b/scripts/notes_app.js new file mode 100644 index 0000000..3bb76a3 --- /dev/null +++ b/scripts/notes_app.js @@ -0,0 +1,3 @@ +function test() { + alert("Test something"); +} \ No newline at end of file