-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (81 loc) · 2.29 KB
/
index.html
File metadata and controls
93 lines (81 loc) · 2.29 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Salvador Pasquier</title>
<style>
:root {
--bg-color: #f4f7f6;
--text-color: #333;
--accent-color: #2c3e50;
--link-hover: #3498db;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
max-width: 400px;
width: 90%;
}
h1 {
margin-bottom: 0.5rem;
color: var(--accent-color);
font-size: 2.5rem;
}
p {
margin-bottom: 2rem;
color: #666;
}
.links {
display: flex;
flex-direction: column;
gap: 1rem;
}
a {
text-decoration: none;
color: white;
background-color: var(--accent-color);
padding: 0.8rem 1.5rem;
border-radius: 6px;
transition: all 0.3s ease;
font-weight: 600;
}
a:hover {
background-color: var(--link-hover);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.footer {
margin-top: 2rem;
font-size: 0.8rem;
color: #aaa;
}
</style>
</head>
<body>
<div class="container">
<h1>Salvador Pasquier</h1>
<p>Connect</p>
<div class="links">
<a href="https://github.com/spasquier/" target="_blank" rel="noopener noreferrer">GitHub</a>
<a href="https://www.linkedin.com/in/salvadorpasquier/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
</div>
<div class="footer">
© 2026 Salvador Pasquier
</div>
</div>
</body>
</html>