-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 2.05 KB
/
index.html
File metadata and controls
56 lines (47 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mael | Developer Portfolio</title>
<link rel="icon" href="./assets/moiEnCostard.jpg">
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="styles/main.css" />
</head>
<body class="bg-gray-900 text-white font-sans">
<!-- Navbar -->
<header class="bg-gray-800 shadow-md">
<nav class="max-w-6xl mx-auto px-4 py-4 flex justify-between items-center">
<div class="text-2xl font-bold text-blue-400">MaelDev</div>
<ul class="flex space-x-6">
<li><a href="index.html" class="text-blue-300 font-semibold">Home</a></li>
<li><a href="./pages/about.html" class="hover:text-blue-300">About</a></li>
<li><a href="./pages/projects.html" class="hover:text-blue-300">Projects</a></li>
<li><a href="./pages/contact.html" class="hover:text-blue-300">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<main class="min-h-[calc(100vh-96px)] flex items-center justify-center px-4 fade-in">
<section class="text-center max-w-xl">
<img src="./assets/moiEnCostard.jpg" alt="Photo de Mael"
class="w-40 h-40 object-cover rounded-full border-4 border-blue-400 mb-6 shadow-lg mx-auto" />
<h1 class="text-4xl font-bold text-blue-400 mb-4">Hi, I'm Mael</h1>
<p class="text-lg text-gray-300 mb-6">
Passionate developer building interactive web apps with <strong>TypeScript</strong>,
<strong>React</strong> & <strong>Tailwind</strong>. I love crafting experiences that feel alive in the browser.
</p>
<a href="./pages/projects.html"
class="bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-6 rounded-full transition">
See My Work
</a>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-800 py-4 text-center text-sm text-gray-400">
© 2025 Mael Gruand - All rights reserved
</footer>
</body>
</html>