From 7c5bb1e29f357f7f13e5b67933706c35aed6af1e Mon Sep 17 00:00:00 2001 From: danielvici123 <94993276+danielvici@users.noreply.github.com> Date: Wed, 2 Oct 2024 11:54:06 +0200 Subject: [PATCH] =?UTF-8?q?-=20Unn=C3=B6tige=20Datei=20gel=C3=B6scht=20-?= =?UTF-8?q?=20erste=20aufgabe=20fertig=20-=20zweite=20aufgabe=20mit=20styl?= =?UTF-8?q?e=20gemacht=20(style=20war=20nicht=20geforder)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- progp/24-10-2/eingabe.html | 3 -- progp/24-10-2/kreis_rechnen_1.html | 23 +++++++++++++++ progp/24-10-2/kreis_rechnen_1.php | 30 +++++++++++++++++++ progp/24-10-2/style.css | 46 ++++++++++++++++++++++++++++++ test.py | 0 5 files changed, 99 insertions(+), 3 deletions(-) create mode 100644 progp/24-10-2/kreis_rechnen_1.html create mode 100644 progp/24-10-2/kreis_rechnen_1.php create mode 100644 progp/24-10-2/style.css delete mode 100644 test.py diff --git a/progp/24-10-2/eingabe.html b/progp/24-10-2/eingabe.html index 10892ad..0998a25 100644 --- a/progp/24-10-2/eingabe.html +++ b/progp/24-10-2/eingabe.html @@ -11,9 +11,6 @@


- - -

diff --git a/progp/24-10-2/kreis_rechnen_1.html b/progp/24-10-2/kreis_rechnen_1.html new file mode 100644 index 0000000..e6c0f0a --- /dev/null +++ b/progp/24-10-2/kreis_rechnen_1.html @@ -0,0 +1,23 @@ + + + + + + Kreis rechner + + + +

Kreis rechner

+
+
+ +

+ + +
+
+ + + \ No newline at end of file diff --git a/progp/24-10-2/kreis_rechnen_1.php b/progp/24-10-2/kreis_rechnen_1.php new file mode 100644 index 0000000..a883081 --- /dev/null +++ b/progp/24-10-2/kreis_rechnen_1.php @@ -0,0 +1,30 @@ + + + + + + Ergebnis + + + +

Ergebnis:

+
+ Der beträgt: cm.

"; + echo "

Der beträgt: cm².

"; + echo "

Der beträgt: cm.

"; + + ?> +
+ +
+
+ + + \ No newline at end of file diff --git a/progp/24-10-2/style.css b/progp/24-10-2/style.css new file mode 100644 index 0000000..351796f --- /dev/null +++ b/progp/24-10-2/style.css @@ -0,0 +1,46 @@ +body { + background-color: cornflowerblue; + margin: 2px; + font-family: Arial, sans-serif; +} +button { + color: white; + background-color: cornflowerblue; + border-radius: 24px; + border: 2px solid black; + height: 50px; + width: 90px; + text-align: center; +} +button:hover{ + background-color: white; + color: cornflowerblue; + cursor: pointer; + height: 57px; + width: 98px; +} +input { + background-color: azure; + border: 2px solid black; + border-radius: 24px; +} +.main { + border: 5px; + border-style: dashed; + border-color: black; + padding-top: 10px; + padding-left: 15px; + padding-bottom: 10px; + border-radius: 24px; + margin-top: 10px; +} +.drinne { + color: white; + font-weight: bold; + text-decoration: underline; +} +p { + font-size: 16px; + color: black; + margin-bottom: 10px; +} \ No newline at end of file diff --git a/test.py b/test.py deleted file mode 100644 index e69de29..0000000