From 16048a2ebdbd9c3f053e0e6065603a71c3ba687a Mon Sep 17 00:00:00 2001 From: Cheikh Dieng GUEYE Date: Fri, 3 Apr 2026 16:33:50 +0000 Subject: [PATCH 1/4] First commit --- index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..e69de29 From e58dc876eb9519c641184345fc10c51f49847ab2 Mon Sep 17 00:00:00 2001 From: Cheikh Dieng GUEYE Date: Fri, 3 Apr 2026 16:36:12 +0000 Subject: [PATCH 2/4] Header html --- index.html | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/index.html b/index.html index e69de29..b56c333 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,51 @@ + + + + + + My Website + + + +
+
My Site
+ +
+
+
+

Welcome to My Website

+

This is a sample header section with navigation.

+
+
+ + \ No newline at end of file From 13dad0cdc04fe31f8c56815d1daaef1a7ef7f459 Mon Sep 17 00:00:00 2001 From: Cheikh Dieng GUEYE Date: Fri, 3 Apr 2026 16:39:20 +0000 Subject: [PATCH 3/4] Footer html --- index.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/index.html b/index.html index b56c333..4c85732 100644 --- a/index.html +++ b/index.html @@ -29,6 +29,20 @@ nav a:hover { text-decoration: underline; } + footer { + background-color: #222; + color: #ddd; + padding: 1rem 2rem; + text-align: center; + font-size: 0.9rem; + } + footer a { + color: #66caff; + text-decoration: none; + } + footer a:hover { + text-decoration: underline; + } @@ -47,5 +61,8 @@

This is a sample header section with navigation.

+
+

© 2026 My Site. All rights reserved. Contact us.

+
\ No newline at end of file From 85ff9dd2a96e3ed3dce4fa78541aef383ac3b810 Mon Sep 17 00:00:00 2001 From: Cheikh Dieng GUEYE Date: Fri, 3 Apr 2026 16:42:10 +0000 Subject: [PATCH 4/4] Release note --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b42547b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +## [1.0.0] - 2026-04-03 +### Added +- Initial page scaffold in `index.html` with doctype, html/head/body structure. +- `header` section with brand and navigation links (`Home`, `About`, `Services`, `Contact`). +- `footer` section with copyright text and a `Contact us` link. + +### Updated +- Inline CSS for layout and styling of `body`, `header`, `nav`, and `footer`. + +### Notes +- Simple static site structure created per user requests `create an html header` and `add the footer section`.