From c099b465533aeb075181818640a057c5a8ebe55b Mon Sep 17 00:00:00 2001 From: bochard Date: Sat, 15 Nov 2025 10:30:57 +0800 Subject: [PATCH] updated code for info.php --- index.php | 2 +- info.php | 45 ++++++++++---------------------------- part/underconstruction.php | 1 + stylesheet/info.css | 4 ++++ 4 files changed, 17 insertions(+), 35 deletions(-) create mode 100644 stylesheet/info.css diff --git a/index.php b/index.php index 1e98920..7fc97fb 100644 --- a/index.php +++ b/index.php @@ -62,7 +62,7 @@ - This page is under construction!!! + This page is under construction!!! diff --git a/info.php b/info.php index 8a32037..7fa39e8 100644 --- a/info.php +++ b/info.php @@ -2,44 +2,21 @@ require_once("{$_SERVER['DOCUMENT_ROOT']}/part/head.php"); $pgtitle = "about me"; $pgdescription = ""; - $pgcss = []; + $pgcss = ['info.css']; $pgjs = []; head($pgtitle, $pgdescription, $pgcss, $pgjs); ?> -
- - - - - - - - - - - - - - -
-
- -
-
- - - - - - - -
- -
-
-
- + + + + + + +
+ +
+ diff --git a/part/underconstruction.php b/part/underconstruction.php index b79f4c9..9d2fb50 100644 --- a/part/underconstruction.php +++ b/part/underconstruction.php @@ -9,5 +9,6 @@

Oopss, nothing here...

Come back soon!

+ back to homepage diff --git a/stylesheet/info.css b/stylesheet/info.css new file mode 100644 index 0000000..aa5b714 --- /dev/null +++ b/stylesheet/info.css @@ -0,0 +1,4 @@ +body { + background: url('/image/background/bluerock.jpg'); + color: white; +} -- 2.39.5