-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalks.html
More file actions
107 lines (92 loc) · 3.46 KB
/
Copy pathtalks.html
File metadata and controls
107 lines (92 loc) · 3.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Talks & Events – Sueda Senturk Avci</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<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: 200px;
border-radius: 10px;
}
@media (max-width: 768px) {
.content-container {
flex-direction: column;
align-items: center;
text-align: center;
}
.profile-img { width: 180px; }
}
</style>
<nav>
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a class="active" href="talks.html">Talks & Events</a>
<a href="teaching.html">Teaching</a>
<a href="videos.html">Videos</a>
</nav>
<!-- Top banner -->
<img src="images/talksimage.jpg" alt="Background" class="header-image">
<header>
<h1>Talks & Events</h1>
</header>
<section>
<h2>Upcoming</h2>
<ul>
<li><a href="https://swc-math.github.io/" target="_blank">Arizona Winter School</a> 2026: Computational Aspects of Arithmetic Geometry and Cryptography</li>
</ul>
<h2>Past</h2>
<ul>
<li> <a href ="https://drive.google.com/file/d/1ZRhuoM8UU60YQrNI1NPb4NuyZ-LtxsVc/view" target="_blank">Computing Fourier Coefficients of Non-Holomorphic Eisenstein Series</a>, December 2025, UMGMS Graduate Seminar Series, University of Manitoba.</li>
<li> <a href ="https://drive.google.com/file/d/1ZRhuoM8UU60YQrNI1NPb4NuyZ-LtxsVc/view" target="_blank">Computing Fourier Coefficients of Non-Holomorphic Eisenstein Series</a>, November 2025, Graduate Student Colloquium, University of Ottawa.</li>
<li>Density Theorems, January 2025, <a href ="https://sites.google.com/view/umgradmathsociety/gms-seminars/winter-2025" target="_blank">UMGMS Graduate Seminar Series </a>, University of Manitoba.</li>
<li>Primes in Arithmetic Progressions, April 2024, <a href = "https://etkinlikler.matematikturkiye.com/etkinlik/iv-analiz-calistayi/">4th Analysis Workshop</a>.</li>
<li>The Roots of Commutative Algebra in Algebraic Number Theory, November 2023, <a href = "https://etkinlikler.matematikturkiye.com/etkinlik/iv-cebir-calistayi/">4th Algebra Workshop</a>.</li>
<li>Class Number on Quadratic Fields, November 2023, <a href="https://www.baharmatematikbulusmasi.com/13-bulusma/">13th Bahar Matematik Buluşması</a>, Yeditepe University </li>
</ul>
<h2>Mathematical Olympiads</h2>
<ul>
<li>Academic Assistant, <a href="https://jbmo2024.tubitak.gov.tr/organization" target="_blank">28th Junior Balkan Mathematical Olympiad</a>, July 2024, Antalya, Turkey</li>
<li>Academic Assistant, <a href="https://bmo2023.tubitak.gov.tr/organization" target="_blank">40th Balkan Mathematical Olympiad</a>, May 2023, Antalya, Turkey</li>
</ul>
</section>
<footer>
<p>© 2025 Sueda Senturk Avci</p>
</footer>
</body>
</html>