-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.99 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Innopolis University Open Lab</title>
<style>
body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; }
.header { background: #2c3e50; color: white; padding: 1rem; text-align: center; }
.nav { background: #34495e; padding: 0.5rem; }
.nav a { color: white; margin: 0 10px; text-decoration: none; }
.container { max-width: 800px; margin: 20px auto; padding: 0 20px; }
.event { background: #f9f9f9; border-left: 4px solid #3498db; padding: 10px; margin: 10px 0; }
footer { text-align: center; padding: 1rem; background: #ecf0f1; }
</style>
</head>
<body>
<div class="header">
<h1>Open Lab</h1>
<p>Exploring the frontiers of AI</p>
</div>
<div class="nav">
<a href="#about">About</a>
<a href="#events">Events</a>
<a href="#contact">Contact</a>
</div>
<div class="container">
<section id="about">
<h2>About Us</h2>
<p>We meet to discuss core concepts and recent papers in Math, Optimization, Adversarial Training applied in ML/AI/NLP and Software Engineering.</p>
</section>
<section id="events">
<h2>Upcoming Events</h2>
<div class="event">
<h3>Talk: Intro Meeting</h3>
<p><strong>Date:</strong> May 16, 2025</p>
<p><strong>Room:</strong> [TBA]</p>
<p><strong>Speakers:</strong> Dr. V. Leplat, Dr. S. Ahmadi Asl, Dr. R. Lukmanov, Dr. B. Rasheed, Dr. V. Ivanov </p>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:v.ivanov@innopolis.ru">mail me</a></p>
</section>
</div>
<footer>
<p>© 2025 OpenLab</p>
</footer>
</body>
</html>