-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (103 loc) · 3.35 KB
/
Copy pathindex.html
File metadata and controls
131 lines (103 loc) · 3.35 KB
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
130
131
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sueda Senturk Avci</title>
<link rel="stylesheet" href="style.css">
<link rel="canonical" href="https://suedasenturk.github.io/sueda.github.io/" />
<!-- Google Search Console verification -->
<meta name="google-site-verification" content="juVPyjrZzKpfwNxM1Mc3PaZqT3cZ3AIskJz9dTFxGco" />
<!-- Site name for Google -->
<meta property="og:site_name" content="Sueda Senturk Avci">
<meta name="application-name" content="Sueda Senturk Avci">
<!-- Optional but recommended -->
<meta name="description" content="Sueda Senturk Avci – University of Manitoba PhD student in mathematics">
<style>
a {
color: #ff69b4; /* soft pink */
text-decoration: none; /* removes underline */
}
/* Navigation links */
nav a {
color: #4b0082; /* dark purple */
text-decoration: underline; /* keep underline */
font-weight: bold;
transition: color 0.3s;
}
/* Navigation hover effect */
nav a:hover,
nav a.active {
color: #6a0dad; /* slightly lighter purple on hover */
text-decoration: underline;
}
/* Navigation visited links */
nav a:visited {
color: #4b0082; /* dark purple, same as unvisited */
}
.header-image {
width: 100%;
max-height: 200px;
object-fit: cover;
object-position: 0 56%;
}
.content-container {
display: flex;
align-items: flex-start;
gap: 20px;
margin-top: 20px;
}
.profile-img {
width: 400px;
border-radius: 10px;
}
@media (max-width: 768px) {
.content-container {
flex-direction: column;
align-items: center;
text-align: center;
}
.profile-img { width: 180px; }
}
</style>
</head>
<body>
<!-- Navigation bar -->
<nav style="background:#f5f5f5; padding:12px; text-align:center; font-size:18px;">
<a href="index.html" style="margin: 0 15px;">Home</a>
<a href="research.html" style="margin: 0 15px;">Research</a>
<a href="talks.html" style="margin: 0 15px;">Talks & Events</a>
<a href="teaching.html" style="margin: 0 15px;">Teaching</a>
<a href="videos.html" style="margin: 0 15px;">Videos</a>
</nav>
<!-- Top banner -->
<img src="images/videosimage.jpg" alt="Background" class="header-image">
<!-- Main content block -->
<div class="content-container">
<!-- Left side profile image -->
<img src="images/sarapcisueda.jpg" alt="Omer Avci" class="profile-img">
<!-- Right side text -->
<div>
<h1>Süeda Şentürk Avcı - Sueda Senturk Avci</h1>
<p><strong>MSc Student – University of Manitoba</strong></p>
<p>
I am a second year Mathematics MSc student at University of Manitoba, working on automorphic forms
and representation theory under the supervision of Dr. Siddarth Sankaran.
</p>
<p>
I completed my BSc in Mathematics at Boğaziçi University in Istanbul in 2024.
</p>
<p>
I am interested in modular forms, L-functions, Eisenstein series, Whittaker functions.
</p>
<p>
I will go for my first half marathon this Summer.
</p>
<p><a href="https://drive.google.com/file/d/1Pf8E8VTcO8iG5NeKXdSnrMxt8IDfLjL8/view" target="_blank"><strong>my CV</strong></a></p>
<p><a href="https://omeravci372742.github.io/omeravci.github.io/">My Favorite Mathematician</a></p>
</div>
</div>
<footer>
<p>© 2025 Sueda Senturk Avci</p>
</footer>
</body>
</html>