4 Commits

Author SHA1 Message Date
ce5d4ab401 Merge branch 'release/1.0.0' into develop 2026-04-03 16:43:09 +00:00
85ff9dd2a9 Release note 2026-04-03 16:42:10 +00:00
c2b13e0929 Merge pull request 'feature/footer' (#1) from feature/footer into develop
Reviewed-on: #1
2026-04-03 16:39:47 +00:00
13dad0cdc0 Footer html 2026-04-03 16:39:20 +00:00
2 changed files with 30 additions and 0 deletions

13
CHANGELOG.md Normal file
View File

@@ -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`.

View File

@@ -29,6 +29,20 @@
nav a:hover { nav a:hover {
text-decoration: underline; 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;
}
</style> </style>
</head> </head>
<body> <body>
@@ -47,5 +61,8 @@
<p>This is a sample header section with navigation.</p> <p>This is a sample header section with navigation.</p>
</section> </section>
</main> </main>
<footer>
<p>&copy; 2026 My Site. All rights reserved. <a href="#contact">Contact us</a>.</p>
</footer>
</body> </body>
</html> </html>