@@ -14,50 +14,67 @@ <h4>Hello! My name is Panos, aka HellenicDev. I'm passionate about programming a
1414
1515 < h2 > My Projects:</ h2 >
1616
17- < div class ="game-list ">
17+ < div class ="game-list ">
1818 < div class ="game-card ">
19- < a href ="./codriver/index.html ">
20- < h3 > Codriver</ h3 >
21- < p > An AI-powered assistant. It has games, jokes, riddles, and more.</ p >
22- </ a >
23- </ div >
24- < div class ="game-card ">
25- < a href ="clicker-game/index.html ">
26- < h3 > Clicker Game</ h3 >
27- < p > A simple incremental game where every click counts. Watch your score rise!</ p >
28- </ a >
29- </ div >
30- < div class ="game-card ">
31- < a href ="./budget-tracker/index.html ">
32- < h3 > Budget Tracker</ h3 >
33- < p > Track your income and expenses with ease. Great for personal finance planning (data saved locally).</ p >
34- </ a >
35- </ div >
36- < div class ="game-card ">
37- < a href ="./the-quiz/index.html ">
38- < h3 > The Quiz</ h3 >
39- < p > Test your knowledge in various subjects. Fun and educational quiz app!</ p >
40- </ a >
41- </ div >
42- < div class ="game-card ">
43- < a href ="./e-table/index.html ">
44- < h3 > E-table</ h3 >
45- < p > A mock-up. Supposed to be a platform where you can reserve a table at a restaurant.</ p >
46- </ a >
47- </ div >
48- < div class ="game-card ">
49- < a href ="./dodge-and-survive/index.html ">
50- < h3 > Dodge & Survive</ h3 >
51- < p > A fast-paced arcade game where you dodge enemies and try to survive as long as possible.</ p >
52- </ a >
53- </ div >
19+ < a href ="./codriver/index.html ">
20+ < h3 > Codriver</ h3 >
21+ < p > An AI-powered assistant. It has games, jokes, riddles, and more.</ p >
22+ </ a >
23+ </ div >
24+ < div class ="game-card ">
25+ < a href ="clicker-game/index.html ">
26+ < h3 > Clicker Game</ h3 >
27+ < p > A simple incremental game where every click counts. Watch your score rise!</ p >
28+ </ a >
29+ </ div >
5430 < div class ="game-card ">
55- < a href ="./the-sound-quiz/index.html ">
56- < h3 > The Sound Quiz</ h3 >
57- < p > A simple quiz. You hear sounds and you have to guess them.</ p >
58- </ a >
31+ < a href ="./budget-tracker/index.html ">
32+ < h3 > Budget Tracker</ h3 >
33+ < p > Track your income and expenses with ease. Great for personal finance planning (data saved locally).</ p >
34+ </ a >
35+ </ div >
36+ < div class ="game-card ">
37+ < a href ="./the-quiz/index.html ">
38+ < h3 > The Quiz</ h3 >
39+ < p > Test your knowledge in various subjects. Fun and educational quiz app!</ p >
40+ </ a >
41+ </ div >
42+ < div class ="game-card ">
43+ < a href ="./e-table/index.html ">
44+ < h3 > E-table</ h3 >
45+ < p > A mock-up. Supposed to be a platform where you can reserve a table at a restaurant.</ p >
46+ </ a >
47+ </ div >
48+ < div class ="game-card ">
49+ < a href ="./dodge-and-survive/index.html ">
50+ < h3 > Dodge & Survive</ h3 >
51+ < p > A fast-paced arcade game where you dodge enemies and try to survive as long as possible.</ p >
52+ </ a >
53+ </ div >
54+ < div class ="game-card ">
55+ < a href ="./the-sound-quiz/index.html ">
56+ < h3 > The Sound Quiz</ h3 >
57+ < p > A simple quiz. You hear sounds and you have to guess them.</ p >
58+ </ a >
59+ </ div >
5960 </ div >
60- </ div >
61+
62+ <!-- Popup Ad -->
63+ < div id ="popup-ad " style ="display:none; position:fixed; bottom:20px; right:20px; width:300px; background:#fff; border:1px solid #ccc; border-radius:8px; padding:15px; box-shadow:0 4px 12px rgba(0,0,0,0.2); font-family:sans-serif; z-index:9999; ">
64+ < strong > Sponsored Offer</ strong >
65+ < p > Join this Discord server for amazing giveaways and more!</ p >
66+ < a href ="discord.gg/invite/NgeU4bSMya " target ="_blank " style ="color:#007bff; "> Check it out →</ a >
67+ < button onclick ="document.getElementById('popup-ad').style.display='none' " style ="position:absolute; top:5px; right:10px; border:none; background:none; font-size:18px; cursor:pointer; "> ×</ button >
68+ </ div >
69+
70+ <!-- Show popup after delay -->
71+ < script >
72+ window . onload = function ( ) {
73+ setTimeout ( function ( ) {
74+ document . getElementById ( 'popup-ad' ) . style . display = 'block' ;
75+ } , 5000 ) ; // Shows after 5 seconds
76+ } ;
77+ </ script >
6178
6279</ body >
6380</ html >
0 commit comments