-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
111 lines (97 loc) · 2.47 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<title>Belay Birlie Yimer contact</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
img {
border-radius: 50%;
}
body {
max-width: 1080px;
margin: 0 auto !important;
float: none !important;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
header {
background-color: white;
padding: 20px;
text-align: center;
font-size: 20px;
color: rgb(2, 18, 69);
column-count: 1;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 20px 10px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
article {
margin-left: 30px;
margin-right: 30px;
padding: 20px;
width: 80%;
background-color: white;
}
/* Clear floats after the columns */
section::after {
content: "";
display: table;
clear: both;
}
/* Style the footer */
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a href="Research.html">Research</a>
<a href="teaching.html">Teaching & talks</a>
<a href="publication.html">Publication</a>
<a href = "Open_source.html"> Open-source tools</a>
<a class = "active" href="contact.html">Contact</a>
<a href="CV.pdf">CV</a>
</div>
<header>
<img src="myimage1.jpg" alt="myimage" style="width:200px">
<h1>Belay Birlie Yimer</h1>
<h2 style="font-family: 'Brush Script MT', cursive;">Embrace uncertainty, be adaptive, be robust, and scale well! </h2>
</header>
<article>
<h1>Contact</h1>
<ul>
<li>Office: Centre for Epidemiology Versus Arthritis, Division of Musculoskeletal and Dermatological Sciences, Faculty of Biology Medicine and Health, The University of Manchester, 2.903, Stopford Building, Manchester, M13 9PT </li>
<li>Email: belaybirlie.yimer(at)manchester.ac.uk</li>
<li>Twitter: <a href= "https://twitter.com/belayBY"> @belayBY</a></li>
<li>ORCID: <a href= "https://orcid.org/0000-0001-8621-6539"> 0000-0001-8621-6539</a></li>
</ul>
</article>
</body>
</html>