-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (126 loc) · 4.1 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Salam Albatarni</title>
<link rel="icon" href="logos/dove.png" type="image/x-icon">
<style>
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: #F1E7DA;
margin: 0;
padding: 0;
text-align: center;
}
.container {
padding: 0 10%; /* Added left and right padding */
text-align: left;
}
header {
/* background-color: #333; */
color: #443E43;
padding: 10px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin-left: 20px;
}
header nav a {
position: relative;
color: #443E43;
text-decoration: none;
margin: 0 10px;
}
header nav a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 100%;
height: 1px;
background-color: transparent;
transition: background-color 0.3s;
}
header nav a:hover::after {
background-color: #6D626A;
}
.content {
color: #443E43;
padding: 5px;
padding-left: 10%;
padding-right: 10%;
}
.social-media a img {
filter: drop-shadow(0px 1000px 0 #443E43);
transform: translateY(-1000px);
width: 23px;
object-fit: contain; /* Ensure the images fit within the specified dimensions */
margin-right: 2%;
}
.about-me {
font-size: 13px;
text-align: justify;
color: #6D626A;
line-height: 25px;
}
footer {
position: relative;
bottom: 0;
left: 0;
width: 100%;
color: #6D626A;
font-size: 7px; /* Adjust the font size as needed */
}
.image-cropper {
height: 200px; /* Height you want to crop to */
overflow: hidden;
position: relative;
border-radius: 5px;
}
.image-cropper img {
width: 100%;
height: auto;
position: absolute;
bottom: 0;
}
</style>
</head>
<body>
<div class="container">
<header>
<h2>Salam Albatarni🕊️</h2>
<nav>
<a href="#">About</a>
<a href="#">Studies</a>
<a href="#">Gallery</a>
</nav>
</header>
<div class="content">
<div class="image-cropper">
<img src="logos/wallpaper.jpeg">
</div>
<h2>Alsalamu Alikum👋</h2>
<div class="about-me">
<p>
I'm Salam, a researcher and an MS.c. student at Qatar University and part of BigIR group.
My research interest is Information Retrieval (IR) and Natural Language Processing (NLP). I am currently working on a QNRF funded project about Arabic automated essay scoring.
</p>
<p>
Hobbies I just don't have time for anymore: reading, and every now and then, drawing.
</p>
</div>
<div class="social-media">
<a href="mailto: [email protected]" target="_blank" title="Email"><img src="logos/mail.png" alt="Email Logo"></a>
<a href="https://scholar.google.com/citations?user=hhYGTucAAAAJ&hl=en" target="_blank" title="Google Scholar"><img src="logos/graduation.png" alt="Email Logo"></a>
<a href="https://www.linkedin.com/in/salam-a-151896206/" target="_blank" title="LinkedIn"><img src="logos/linkedin.png" alt="LinkedIn Logo"></a>
</div>
</div>
</div>
</body>
<footer>
<p>Created by prompting :)</p>
</footer>
</html>