-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Network Analyst - Jakob Gezelius</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<meta name="description" content="Professional network analyst profile page for Jakob Gezelius. Connect with me on LinkedIn, Twitter, GitHub, or via email.">
<meta name="keywords" content="Network Analyst, LinkedIn, Twitter, GitHub, Email, Jakob Gezelius">
<meta name="author" content="Jakob Gezelius">
<style>
body {
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
background-image: url('background.jpg'); /* Add your background image file name here */
background-size: cover;
background-position: center;
}
h1 {
font-size: 2.5em;
margin: 0.5em 0;
color: #fff;
}
p {
font-size: 1.5em;
margin: 0.5em 0;
color: #fff;
}
.buttons {
margin-top: 1em;
}
.button {
display: inline-block;
padding: 10px 20px;
font-size: 1em;
margin: 0 10px;
text-decoration: none;
color: white;
background-color: #0073b1; /* LinkedIn blue */
border-radius: 5px;
transition: background-color 0.3s ease;
}
.button.twitter {
background-color: #1da1f2; /* Twitter blue */
}
.button.github {
background-color: #333; /* GitHub black */
}
.button.email {
background-color: #ea4335; /* Gmail red */
}
.button:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<h1>Jakob Gezelius</h1>
<p>Network Analyst</p>
<div class="buttons">
<a href="https://www.linkedin.com/in/jakobgezelius/" class="button" target="_blank">LinkedIn</a>
<a href="https://x.com/jakobgezelius" class="button twitter" target="_blank">Twitter</a>
<a href="https://github.com/androidnisse" class="button github" target="_blank">GitHub</a>
<a href="mailto:[email protected]" class="button email">Email</a>
</div>
</body>
</html>