From ee4319401fa335ec2688633aa88012d9c5f9a372 Mon Sep 17 00:00:00 2001 From: chwrba Date: Fri, 19 Jan 2024 09:16:42 +0100 Subject: [PATCH] Repo erstellt --- .idea/.gitignore | 5 +++++ .idea/modules.xml | 8 ++++++++ .idea/my_computer.iml | 12 ++++++++++++ index.html | 15 +++++++++++++++ logic.js | 5 +++++ main.css | 3 +++ 6 files changed, 48 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/my_computer.iml create mode 100644 index.html create mode 100644 logic.js create mode 100644 main.css diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..bf9aced --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/my_computer.iml b/.idea/my_computer.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/my_computer.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..99fbe87 --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + + + Mein Computer + + + + +

Hallo

+ + + + \ No newline at end of file diff --git a/logic.js b/logic.js new file mode 100644 index 0000000..95be74c --- /dev/null +++ b/logic.js @@ -0,0 +1,5 @@ + +function alertHallo(){ + //alert("Hallo!"); + document.getElementById("myh").innerText = "Tschüß"; +} \ No newline at end of file diff --git a/main.css b/main.css new file mode 100644 index 0000000..663aa1f --- /dev/null +++ b/main.css @@ -0,0 +1,3 @@ +#myh { + color: blue; +} \ No newline at end of file