-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 896 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
<style>
/* Add some style to the page */
body {
font-family: Arial, sans-serif;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
color: #fff;
}
.nav a {
color: #fff;
text-decoration: none;
padding: 0.5em 1em;
}
.nav a:hover {
background-color: #444;
}
.profile-pic {
border-radius: 50%;
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<div style="text-align: center; margin: 2em;">
<img src="Momodou_profile.png" alt="My Picture" class="profile-pic">
</div>
<nav class="nav">
<a href="#">Home</a>
<a href="#">CV</a>
<a href="#">Publications</a>
</nav>
</body>
</html>