-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·98 lines (72 loc) · 3.16 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
90
91
92
93
94
95
96
97
98
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="./script.js" async ></script>
<title>meteorids</title>
</head>
<body>
<!--Header Section-->
<header>
<!-- Desktop Header-->
<div class="logo">
<p><a href="./index.html">meteorids<span>®</span></a></p>
</div>
<nav class="desktopnav">
<a href="./about.html">About</a>
<a href="./research.html">Research</a>
<a href="./teaching.html">Teaching</a>
<a href="./contact.html">Contact</a>
<!-- <a href="#">Misc</a> -->
</nav>
<!-- Mobile Header-->
<nav class="mobilenav">
<a id="mobilelogo" href="./index.html">meteorids<span>®</span></a>
<a href="javascript:void(0);" class="icon" onclick="toggleNav()">
<i class="fa fa-bars"></i>
</a>
<div id="mobilelinks">
<a href="./about.html">About</a>
<a href="./research.html">Research</a>
<a href="./teaching.html">Teaching</a>
<a href="./contact.html">Contact</a>
</div>
</nav>
</header>
<!--Main Section-->
<div class="aboutmain">
<div class="abouttext">
<div class="abouttitle">
<img src="./resources/images/about.png" alt="">
</div>
<p> A USA [NY/NJ] and EU based Physicist with a Ph.D.<br><br>
My previous research topics included radiative transfer, <br id="del">
atmospheric physics, biophysics and sequence aligning <br id="del">
algorithms. <br><br>
After completing my B.Sc. degree, I have been involved <br id="del">
in teaching various physics courses while also <br id="del">
conducting research in the areas of radiative transfer <br id="del">
and atmospheric physics. <br><br>
Currently developing an algorithm for retrieving <br id="del">
atmospheric aerosol microphysical properties <br id="del">
and optical depth. In my research I utilize <br id="del">
radiative transfer methods, machine learning, <br id="del">
simulations, coding, ground based measurements <br id="del">
and satellite data. <br><br>
For more details feel free to download my CV. <br id="del">
Please contact me for the file password.
</p> <br>
<a class="resume" href="./resources/documents/milos_cv.pdf">Download Resume PDF</a>
</div>
<div class="aboutimg">
<img src="./resources/images/milos.jpg">
</div>
</div>
<!--Footer Section-->
<footer>
<p id="year"></p>
</footer>
</body>
</html>