-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideos.html
More file actions
95 lines (81 loc) · 1.96 KB
/
Copy pathvideos.html
File metadata and controls
95 lines (81 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Videos – 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 37%;
}
.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 href="talks.html">Talks & Events</a>
<a href="teaching.html">Teaching</a>
<a class="active" href="videos.html">Videos</a>
</nav>
<!-- Top banner -->
<img src="images/mainimagebackground.jpg" alt="Background" class="header-image">
<header>
<h1>Videos</h1>
</header>
<section>
<h2>Video Links</h2>
<ul>
<li>Süeda Şentürk |
<a href="https://www.youtube.com/watch?v=WPLkC3Ymgww" target="_blank">Primes in Arithmetic Progressions</a></li>
<li>Süeda Şentürk Avcı |
<a href="https://www.youtube.com/watch?v=QXs2HyX3cUg" target="_blank">The Roots of Commutative Algebra in Algebraic Number Theory</a></li>
</ul>
</section>
<footer>
<p>© 2025 Sueda Senturk Avci</p>
</footer>
</body>
</html>