|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
6 | 6 | <title>HellenicDev</title> |
7 | | - <style> |
8 | | - body { |
9 | | - font-family: sans-serif; |
10 | | - background: #111; |
11 | | - color: white; |
12 | | - margin: 0; |
13 | | - padding: 2rem; |
14 | | - display: flex; |
15 | | - flex-direction: column; |
16 | | - align-items: center; |
17 | | - } |
18 | | - |
19 | | - .logo { |
20 | | - width: 150px; |
21 | | - height: auto; |
22 | | - margin-bottom: 1.5rem; |
23 | | - border-radius: 10px; |
24 | | - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); |
25 | | - } |
26 | | - |
27 | | - h1 { |
28 | | - font-size: 3rem; |
29 | | - margin-bottom: 2rem; |
30 | | - letter-spacing: 2px; |
31 | | - text-align: center; |
32 | | - } |
33 | | - |
34 | | - .game-list { |
35 | | - width: 100%; |
36 | | - max-width: 900px; |
37 | | - display: grid; |
38 | | - grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); |
39 | | - gap: 1.5rem; |
40 | | - margin-top: 2rem; |
41 | | - } |
42 | | - |
43 | | - .game-card { |
44 | | - background: #222; |
45 | | - padding: 1rem; |
46 | | - border-radius: 10px; |
47 | | - box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); |
48 | | - text-align: center; |
49 | | - transition: transform 0.2s ease; |
50 | | - } |
51 | | - |
52 | | - .game-card:hover { |
53 | | - transform: scale(1.05); |
54 | | - } |
55 | | - |
56 | | - .game-card a { |
57 | | - text-decoration: none; |
58 | | - color: #00aaff; |
59 | | - font-weight: bold; |
60 | | - font-size: 1.1rem; |
61 | | - } |
62 | | - </style> |
| 7 | + <link rel="stylesheet" href="style.css" /> |
63 | 8 | </head> |
64 | 9 | <body> |
65 | | - <!-- Make sure logo.png is in the same folder as this HTML file --> |
66 | | - <img src="logo.png" alt="HellenicDev Logo" class="logo"> |
67 | | - |
| 10 | + <!-- Make sure logo.png is in the same folder --> |
| 11 | + <img src="logo.png" alt="HellenicDev Logo" class="logo" /> |
| 12 | + |
68 | 13 | <h1>HellenicDev</h1> |
69 | | - <h4> Hello! My name is Panos, aka HellenicDev. I'm passionate about programming and love exploring different languages and technologies. I've created several projects so far—and many more are on the way! You can find a few of them listed below. Enjoy! </h4> |
70 | | -<h2>My Projects:</h2> |
| 14 | + <h4>Hello! My name is Panos, aka HellenicDev. I'm passionate about programming and love exploring different languages and technologies. I've created several projects so far—and many more are on the way! You can find a few of them listed below. Enjoy!</h4> |
71 | 15 |
|
72 | | - <div class="game-list"> |
73 | | - <div class="game-card"> |
74 | | - <a href="./clicker-game/index.html">Clicker Game</a> |
75 | | - </div> |
76 | | - <div class="game-card"> |
77 | | - <a href="./codriver/index.html">Codriver</a> |
78 | | - </div> |
79 | | - <div class="game-card"> |
80 | | - <a href="./budget-tracker/index.html">Budget Tracker</a> |
81 | | - </div> |
82 | | - <div class="game-card"> |
83 | | - <a href="./the-quiz/index.html">The Quiz</a> |
84 | | - </div> |
85 | | - |
86 | | - <div class="game-card"> |
87 | | - <a href="./e-table/index.html">E-table</a> |
88 | | - </div> |
| 16 | + <h2>My Projects:</h2> |
| 17 | + |
| 18 | +<div class="game-list"> |
| 19 | + <div class="game-card"> |
| 20 | + <a href="clicker-game/index.html"> |
| 21 | + <h3>Clicker Game</h3> |
| 22 | + <p>A simple incremental game where every click counts. Watch your score rise!</p> |
| 23 | + </a> |
| 24 | + </div> |
| 25 | + <div class="game-card"> |
| 26 | + <a href="./codriver/index.html"> |
| 27 | + <h3>Codriver</h3> |
| 28 | + <p>An AI-powered assistant. It has games, jokes, riddles and more.</p> |
| 29 | + </a> |
| 30 | + </div> |
| 31 | + <div class="game-card"> |
| 32 | + <a href="./budget-tracker/index.html"> |
| 33 | + <h3>Budget Tracker</h3> |
| 34 | + <p>Track your income and expenses with ease. Great for personal finance planning (saved locally).</p> |
| 35 | + </a> |
89 | 36 | </div> |
90 | | - </div> |
91 | | - |
92 | | - <div class="game-card"> |
93 | | - <a href="./dodge-and-survive/index.html">Dodge & Survive</a> |
94 | | - </div> |
| 37 | + <div class="game-card"> |
| 38 | + <a href="./the-quiz/index.html"> |
| 39 | + <h3>The Quiz</h3> |
| 40 | + <p>Test your knowledge in various subjects. Fun and educational quiz app!</p> |
| 41 | + </a> |
95 | 42 | </div> |
| 43 | + <div class="game-card"> |
| 44 | + <a href="./e-table/index.html"> |
| 45 | + <h3>E-table</h3> |
| 46 | + <p>A mock-up. Supposed to be a platform where you can reserve a table at a restaurant.</p> |
| 47 | + </a> |
| 48 | + </div> |
| 49 | + <div class="game-card"> |
| 50 | + <a href="./dodge-and-survive/index.html"> |
| 51 | + <h3>Dodge & Survive</h3> |
| 52 | + <p>A fast-paced arcade game where you dodge enemies and try to survive as long as possible.</p> |
| 53 | + </a> |
| 54 | + </div> |
| 55 | +</div> |
| 56 | + |
96 | 57 | </body> |
97 | 58 | </html> |
0 commit comments