-
Notifications
You must be signed in to change notification settings - Fork 1
/
speaker.html
100 lines (94 loc) · 2.07 KB
/
speaker.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PyMi Info Panel</title>
<style>
* {
font-family: "Comfortaa SemiBold";
color: white;
font-size: 48pt;
margin: 0px;
}
p {
margin: 15pt;
}
.author {
color: #ffbf00;
font-size: 110%;
}
@counter-style speaker {
system: cyclic;
symbols: "\1F5E8";
suffix: " ";
}
@counter-style role {
system: cyclic;
symbols: "\1F468\200D\1F3EB";
suffix: " ";
}
@counter-style company {
system: cyclic;
symbols: "\1F3E2""@";
suffix: " ";
}
ul {
margin: 0pt;
margin-left: 40pt;
margin-right: 15pt;
}
li {
list-style: none;
color: #34b4eb;
}
li.speaker {
list-style-type: speaker;
color: #ffbf00;
margin-top: 8pt;
}
li.role {
list-style-type: role;
color: #27e38b;
}
li.company {
list-style-type: company;
}
.large {
font-size: 110%;
}
.small {
font-size: 80%;
}
.tiny {
font-size: 60%;
}
.first {
display: block;
}
.second {
display: none;
}
</style>
</head>
<body>
<!-- When it's time to change speaker change "display"
in the "style" tag above -->
<div class="first">
<ul>
<li class="speaker">Nir Gazit</li>
<li class="role small">CEO</li>
<li class="company small">Traceloop</li>
</ul>
<p>Observability for Large Language Models with OpenTelemetry</p>
</div>
<div class="second">
<ul>
<li class="speaker">Marco Bevilacqua</li>
<li class="role small">ML Engineer</li>
<li class="company small">TeamSystem</li>
</ul>
<p>MLOps with AzureML: Build and deploy a Recommender System</p>
</div>
</body>
</html>