-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·85 lines (61 loc) · 2.64 KB
/
contact.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
<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="contactmain">
<div class="contacttext">
<div class="contacttitle">
<img src="./resources/images/contact.png" alt="">
</div>
<h1>Say hello!</h1>
<div class="buttons">
<a class="button" id="email" href="mailto:milostipanov@gmail.com" data-hovertext="milostipanov@gmail.com"><span>e-mail</span></a>
<a class="button" id="github" href="https://github.com/meteorids" data-hovertext="github.com/meteorids" target="_blank"><span>github</span></a>
<a class="button" id="linkedin" href="https://www.linkedin.com/in/dr-milos-sztipanov-5670845b/" data-hovertext="Dr. Milos Sztipanov" target="_blank"><span>linkedin</span></a>
<a class="button" id="researchgate" href="https://www.researchgate.net/profile/Milos-Sztipanov" data-hovertext="Dr. Milos Sztipanov" target="_blank"><span>research gate</span></a>
</div>
</div>
<div class="contactimg">
<img src="./resources/images/milos.jpg" alt="">
</div>
</div>
<!--Footer Section-->
<footer>
<p id="year"></p>
</footer>
</body>
</html>