diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/footer.css b/footer.css new file mode 100644 index 0000000..9fa3589 --- /dev/null +++ b/footer.css @@ -0,0 +1,36 @@ +/* Footer styles */ +footer { + background-color: #333; + color: #fff; + padding: 10px; + text-align: center; + position: absolute; + bottom: 0; + width: 100%; +} + +.footer-content { + max-width: 800px; + margin: 0 auto; + display: flex; + justify-content: space-between; + align-items: center; +} + +.footer-content p { + margin: 0; +} + +.footer-content ul { + list-style: none; + padding: 0; +} + +.footer-content ul li { + display: inline; + margin-right: 20px; +} + +.footer-content ul li:last-child { + margin-right: 0; +} diff --git a/index.html b/index.html index 8ca4da9..4bf5911 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,8 @@