From aab2d019879218a651ef21845e433e3ff187658e Mon Sep 17 00:00:00 2001 From: Tutur33 Date: Fri, 1 Dec 2023 20:11:51 +0100 Subject: [PATCH] update date_of_birth project and rename file --- Activity_PHP/date_of_birth/index.php | 79 +++++++++++++++++++ Activity_PHP/date_of_birth/ne_e_quel_jour.css | 12 --- Activity_PHP/date_of_birth/ne_e_quel_jour.php | 31 -------- .../date_of_birth/ne_e_quel_jour2.php | 46 ----------- Activity_PHP/date_of_birth/style.css | 32 ++++++++ .../the_sphere/{lasphere.php => index.php} | 0 6 files changed, 111 insertions(+), 89 deletions(-) create mode 100644 Activity_PHP/date_of_birth/index.php delete mode 100644 Activity_PHP/date_of_birth/ne_e_quel_jour.css delete mode 100644 Activity_PHP/date_of_birth/ne_e_quel_jour.php delete mode 100644 Activity_PHP/date_of_birth/ne_e_quel_jour2.php create mode 100644 Activity_PHP/date_of_birth/style.css rename Activity_PHP/the_sphere/{lasphere.php => index.php} (100%) diff --git a/Activity_PHP/date_of_birth/index.php b/Activity_PHP/date_of_birth/index.php new file mode 100644 index 0000000..b836a31 --- /dev/null +++ b/Activity_PHP/date_of_birth/index.php @@ -0,0 +1,79 @@ + + + + + + Which Day of the Week Were You Born On? + + + +

Which day of the week were you born on?

+ +
+
+ + +
+ +

Your date of birth:

+ +
+ + + + + + + + +
+ + +
+ +
+ +
+ + diff --git a/Activity_PHP/date_of_birth/ne_e_quel_jour.css b/Activity_PHP/date_of_birth/ne_e_quel_jour.css deleted file mode 100644 index 8a8c0e8..0000000 --- a/Activity_PHP/date_of_birth/ne_e_quel_jour.css +++ /dev/null @@ -1,12 +0,0 @@ -body { - background-color: floralwhite; -} - -h1, -h2 { - color: blue; -} - -.ne { - display: flex; -} \ No newline at end of file diff --git a/Activity_PHP/date_of_birth/ne_e_quel_jour.php b/Activity_PHP/date_of_birth/ne_e_quel_jour.php deleted file mode 100644 index 0e2b3cd..0000000 --- a/Activity_PHP/date_of_birth/ne_e_quel_jour.php +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Calculatrice - - - -

Quel jour de la semaine êtes-vous né(e) ?

- -
-
-

Votre prénom :

- -
- -

Votre date de naissance SVP ?:

- -
-

Jour du mois :

- -

mois :

- -

année :

- -
- - -
- - \ No newline at end of file diff --git a/Activity_PHP/date_of_birth/ne_e_quel_jour2.php b/Activity_PHP/date_of_birth/ne_e_quel_jour2.php deleted file mode 100644 index d1651d6..0000000 --- a/Activity_PHP/date_of_birth/ne_e_quel_jour2.php +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Calculatrice - - - -

Quel jour de la semaine êtes-vous né(e) ?

- -

- -

- - \ No newline at end of file diff --git a/Activity_PHP/date_of_birth/style.css b/Activity_PHP/date_of_birth/style.css new file mode 100644 index 0000000..5a265e4 --- /dev/null +++ b/Activity_PHP/date_of_birth/style.css @@ -0,0 +1,32 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + text-align: center; +} + +h1 { + margin-top: 20px; +} + +form { + margin-top: 20px; +} + +input[type="text"], +input[type="number"], +button { + margin: 5px; + padding: 5px; + border-radius: 5px; + border: 1px solid #ccc; +} + +button { + cursor: pointer; +} + +div { + margin-top: 20px; + font-weight: bold; +} diff --git a/Activity_PHP/the_sphere/lasphere.php b/Activity_PHP/the_sphere/index.php similarity index 100% rename from Activity_PHP/the_sphere/lasphere.php rename to Activity_PHP/the_sphere/index.php