-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
82 lines (70 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Define title -->
<title>Carl Barks</title>
<!-- Include favicon. Use, e.g., https://favicon.io/ -->
<link rel="icon" type="image/png" href="favicon.png" sizes="32x32" />
<!-- Include style sheets -->
<link rel="stylesheet" href="main.css" />
<!-- Fonts from Google Fonts -->
<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=Source+Sans+Pro:wght@300;600&display=swap" rel="stylesheet" />
<!-- Load FontAwesome (for icons) -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
/>
<!-- Load Academicons (for more icons) -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.2/css/academicons.min.css"
integrity="sha512-KlJCpRsLf+KKu2VQa5vmRuClRFjxc5lXO03ixZt82HZUk41+1I0bD8KBSA0fY290ayMfWYI9udIqeOWSu1/uZg=="
crossorigin="anonymous"
/>
</head>
<body>
<section id="content">
<!-- Avatar image -->
<img src="image.jpg" alt="Carl Barks" class="avatar" />
<!-- Text -->
<h1>Hi, I'm Carl Barks!</h1>
<p>
I am a Ph.D. student in empirical barkology at Woof University.
</p>
<p>
Most of my current research is driven by trying to find an answer to the age-old question of “Who is a good boy?"
</p>
<p>
Please feel free to get in touch!
</p>
<!-- Icons -->
<ul class="icons">
<li>
<a href="" title="Institutional website"><i class="fas fa-university"></i></a>
</li>
<li>
<a href="" title="E-Mail"><i class="fas fa-envelope"></i></a>
</li>
<li>
<a href="" title="GitHub"><i class="fab fa-github"></i></a>
</li>
<li>
<a href="" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
</li>
<li>
<a href="" title="NASA / ADS"><i class="ai ai-ads"></i></a>
</li>
<li>
<a href="" title="Google Scholar"><i class="ai ai-google-scholar"></i></a>
</li>
</ul>
</section>
</body>
</html>