-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (29 loc) · 1.22 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Milian Solberg</title>
<meta name="description" content="Computer Science Student">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/protagonist.png" type="image/png">
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
</head>
<body>
<h1>Milian Solberg</h1>
<p>Computer Science Student</p>
<div id="cards">
<!-- First card with GitHub logo and link -->
<a href="https://github.com/miliansolberg" target="_blank" class="card">
<img src="/assets/github-mark-white.svg" alt="GitHub Logo" style="width:50px;height:50px;">
</a>
<!-- Second card with LinkedIn logo and link -->
<a href="https://www.linkedin.com/in/miliansolberg/" target="_blank" class="card">
<img src="assets/linkedin-logo.png" alt="LinkedIn Logo" style="width:60px;height:50px;">
</a>
</div>
<script src="main.js"></script>
</body>
</html>