-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·77 lines (54 loc) · 2 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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="indexmain">
<div class="indextext">
<h1>Hi! I am Milos</h1>
<p>I am a physicist focused on radiative transfer, <br> atmospheric physics, remote sensing, <br> aerosols, ozone and instrumentation.</p>
<a href="./about.html">Read more</a>
</div>
<div class="indeximg">
<img src="./resources/images/intro2.png" alt="">
</div>
</div>
<!--Footer Section-->
<footer>
<p id="year"></p>
</footer>
</body>
</html>