-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 1.1 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Markus B. Pettersson</title>
<!-- Google Fonts: EB Garamond -->
<link href="https://fonts.googleapis.com/css?family=EB+Garamond:400,700&display=swap" rel="stylesheet">
<style>
html, body {
height: 100%;
margin: 0;
background-color: #FFCE1B;
font-family: 'EB Garamond', serif;
color: #333;
}
body {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
line-height: 1.6;
padding: 1rem;
}
h1 {
font-size: 3em;
margin-bottom: 0.2em;
}
h2 {
font-weight: normal;
font-size: 1.5em;
margin-top: 0;
margin-bottom: 1em;
color: #000; /* Warm yellow accent */
}
p {
font-size: 1.2em;
color: #555;
margin: 0;
}
</style>
</head>
<body>
<div>
<h1>Markus B. Pettersson</h1>
<h2>PhD Student in Machine Learning</h2>
<p>More information coming soon…</p>
</div>
</body>
</html>