Skip to content

Commit 83a0e30

Browse files
committed
Updated footer
1 parent f2d97bb commit 83a0e30

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1+
2+
3+
[![Website](https://img.shields.io/website?url=https%3A%2F%2Feudk.github.io&label=live%20demo)](https://eudk.github.io)
4+
[![GitHub Pages](https://img.shields.io/badge/deployed%20on-GitHub%20Pages-blue?logo=github)](https://eudk.github.io)
5+
[![Made with](https://img.shields.io/badge/made%20with-HTML%2FCSS%2FJS-orange?logo=javascript)](#)
6+
[![Portfolio](https://img.shields.io/badge/type-portfolio-success)](#)
7+
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
8+
[![Last Commit](https://img.shields.io/github/last-commit/eudk/eudk.github.io?logo=git)](#)
9+
[![Repo Size](https://img.shields.io/github/repo-size/eudk/eudk.github.io)](#)
10+
[![Stars](https://img.shields.io/github/stars/eudk/eudk.github.io?style=social)](#)
11+
[![Forks](https://img.shields.io/github/forks/eudk/eudk.github.io?style=social)](#)
12+
[![Code Quality](https://img.shields.io/badge/code%20style-standard-yellow?logo=javascript)](#)
13+
14+
115
# Personal Portfolio Website
216

317
This repository contains the source code for my personal portfolio website, built with **HTML**, **CSS**, and **vanilla JavaScript**.
4-
518
## ✨ Features
619

720
- **Interactive XP Desktop** – Nostalgic Windows XP–themed portfolio page with draggable windows and icons.
@@ -10,6 +23,7 @@ This repository contains the source code for my personal portfolio website, buil
1023
- **Secure Contact Form** – Uses [Formspree](https://formspree.io) for secure submissions without exposing personal email addresses.
1124
- **GDPR Compliant** – Includes a privacy notice and requires user consent for data handling.
1225
- **Fully Responsive** – Optimized for both desktop and mobile devices.
26+
- Created by @eudk
1327

1428
## 🚀 Deployment
1529

css/style.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,24 @@ h1 { font-size: 3.5rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: -
5555
.action-buttons { flex-direction: column; align-items: center; }
5656
.action-buttons a, .action-buttons button { width: 100%; max-width: 300px; justify-content: center; }
5757
.modal-content { padding: 30px 25px; }
58+
}
59+
60+
/* --- Footer Styling --- */
61+
footer {
62+
position: absolute;
63+
bottom: 10px;
64+
width: 100%;
65+
text-align: center;
66+
}
67+
footer small {
68+
font-size: 0.8rem;
69+
color: #888;
70+
}
71+
footer a {
72+
color: #555;
73+
text-decoration: none;
74+
transition: color 0.2s ease;
75+
}
76+
footer a:hover {
77+
color: #007aff;
5878
}

index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,9 @@ <h2>Contact Me</h2>
6363
</div>
6464

6565
<script src="js/main.js" defer></script>
66+
67+
<footer>
68+
<small>&copy; 2025 <a href="https://github.com/eudk/eudk.github.io/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">Evgeniy Gordienko</a> | <a href="https://github.com/eudk/eudk.github.io#readme" target="_blank" rel="noopener noreferrer">About</a> | <a href="privacy.html">Privacy</a></small>
69+
</footer>
6670
</body>
6771
</html>

0 commit comments

Comments
 (0)