-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
99 lines (88 loc) · 2.13 KB
/
index.html
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
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>bykenel</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px;
background-color: #111;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
h1 {
font-size: 24px;
color: #fff;
margin-top: 0;
}
p {
font-size: 16px;
color: #bbb;
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #4d4d4d;
color: #fff;
text-decoration: none;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
margin-right: 10px;
}
@media (max-width: 480px) {
.container {
padding: 20px;
}
h1 {
font-size: 20px;
}
p {
font-size: 14px;
margin-bottom: 10px;
}
.button {
display: block;
margin-bottom: 10px;
margin-right: 0;
}
}
.text-right {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 12px;
color: #999;
}
</style>
</head>
<body>
<div class="container">
<h1>Under Development...</h1>
<p>Sorry! Something awesome will be here in the near future! 😅</p>
<p>
In the meantime, you can access my resume or find me on other platforms.
</p>
<a href="./attachments/CV_denzel-farias.pdf" class="button">Resume</a>
<a href="https://www.linkedin.com/in/denzel-farias/" class="button"
>LinkedIn</a
>
<a href="https://github.com/bykenel" class="button">GitHub</a>
<a href="mailto:denzel.vianna@hotmail.com" class="button">Email</a>
<div class="text-right">© 2025 Denzel Farias</div>
</div>
</body>
</html>