-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
89 lines (83 loc) · 2.55 KB
/
about.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
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<title>About</title>
<meta charset="UTF-8">
<!--meta name="viewport" content="width=device-width, initial-scale=1"-->
<head>
<link href='https://fonts.googleapis.com/css?family=Cairo' rel='stylesheet'>
<!--link href='https://fonts.googleapis.com/css?family=Roboto:thin' rel='stylesheet'-->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'>
<style>
body { font-family: 'Open Sans';
font-size: 20px;
color: white;
background-color: black;
margin: 0;
}
h1 { font-family: 'Cairo';
font-size: 60px;
font-weight: lighter;
color: white;
}
p { font-family: 'Open Sans';
font-size: 20px;
color: white;
width: 60%;
font-weight: normal;
padding: 40px
}
h2 { font-family: 'Cairo';
font-size: 40px;
color: white;
}
li { display: inline;
float: left;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: black;
}
li a {
display: block;
color: white;
font-family: 'Cairo';
font-size: 30px;
text-align: center;
padding: 14px 16px;
text-decoration: none;
outline: none;
}
li a:hover {
background-color: black;
color: gray;
}
div.text {
width: 80%;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="./index.html">KRYSTOF BREZINA</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./research.html">Research</a></li>
<li><a href="./news.html">News</a></li>
<li><a href="./cv.html">CV</a></li>
<li><a href="./publications.html">Publications</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
<h1 style='margin-left: 40px; font-family: Cairo'>Hi,</h1>
<div class='text' style='margin-left: 40px;' align='justify'>
welcome to my website. I'm a PhD student in the group of dr. Ondrej Marsalek at Charles University in Prague, Czech republic.
I take part in research in an area of science at the borders of theoretical physics, chemistry and computational technology—molecular
simulation.
Here, we use advanced theoretical approaches to study electronic and molecular structure in hydrogen-bonded liquid systems.
I made this website to share my (mostly) work-related news, outlooks and achievements, so feel free to look around and see what I'm up to.
</div>
</body>
</html>