-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (62 loc) · 1.64 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Personal website and endpoint">
<meta http-equiv="Content-Security-Policy" content="script-src 'none'">
<title>Darwin Ameli</title>
<style>
* {
box-sizing: border-box;
}
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4;
}
.container {
text-align: center;
}
h1, p, a {
margin: 10px 0;
}
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
a {
font-size: 0.9rem;
color: #0A66C2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
h1 {
font-size: 1.5rem;
}
p, a {
font-size: 0.8rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Darwin Ameli</h1>
<p><a href="cv/" target="_blank">CV</a></p>
<p>Entrepreneur</p>
<p>Business Information Technology</p>
<a href="https://www.linkedin.com/in/darwin-ameli" target="_blank">LinkedIn</a>
</div>
</body>
</html>