Spaces:
Running
Running
yoo forgot add slide template lol
Browse files- slide_template.html +91 -0
slide_template.html
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Lecture Slide</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: 'Times New Roman', Times, serif;
|
10 |
+
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
height: 100vh;
|
13 |
+
display: flex;
|
14 |
+
justify-content: center;
|
15 |
+
align-items: center;
|
16 |
+
}
|
17 |
+
.slide {
|
18 |
+
width: 100%;
|
19 |
+
height: 90%;
|
20 |
+
position: relative;
|
21 |
+
border: none;
|
22 |
+
}
|
23 |
+
.header {
|
24 |
+
position: absolute;
|
25 |
+
top: 10px;
|
26 |
+
width: 100%;
|
27 |
+
display: flex;
|
28 |
+
justify-content: space-between;
|
29 |
+
font-size: 18px;
|
30 |
+
color: #000000;
|
31 |
+
}
|
32 |
+
.header-left {
|
33 |
+
margin-left: 20px;
|
34 |
+
}
|
35 |
+
.header-right {
|
36 |
+
margin-right: 20px;
|
37 |
+
}
|
38 |
+
.content {
|
39 |
+
position: absolute;
|
40 |
+
top: 50%;
|
41 |
+
left: 50%;
|
42 |
+
text-align: start !important;
|
43 |
+
transform: translate(-50%, -50%);
|
44 |
+
font-size: 48px;
|
45 |
+
line-height: 1.2;
|
46 |
+
}
|
47 |
+
.content p {
|
48 |
+
margin: 10px 0;
|
49 |
+
font-size: 24px;
|
50 |
+
}
|
51 |
+
.footer {
|
52 |
+
position: absolute;
|
53 |
+
bottom: 10px;
|
54 |
+
width: 100%;
|
55 |
+
display: flex;
|
56 |
+
justify-content: space-between;
|
57 |
+
font-size: 18px;
|
58 |
+
color: #000000;
|
59 |
+
}
|
60 |
+
.footer-left {
|
61 |
+
margin-left: 20px;
|
62 |
+
}
|
63 |
+
.footer-right {
|
64 |
+
margin-right: 20px;
|
65 |
+
}
|
66 |
+
hr {
|
67 |
+
border: 0;
|
68 |
+
border-top: 1px solid #050505;
|
69 |
+
margin: 0;
|
70 |
+
}
|
71 |
+
</style>
|
72 |
+
</head>
|
73 |
+
<body>
|
74 |
+
<div class="slide">
|
75 |
+
<div class="header">
|
76 |
+
<div class="header-left">Slide: <!--SLIDE_NUMBER--></div>
|
77 |
+
<div class="header-center">section title</div>
|
78 |
+
<div class="header-right">Lecture title</div>
|
79 |
+
</div>
|
80 |
+
<hr style="position: absolute; top: 5px; width: 100%;">
|
81 |
+
<div class="content">
|
82 |
+
<!--CONTENT-->
|
83 |
+
</div>
|
84 |
+
<hr style="position: absolute; bottom: -30px; width: 100%;">
|
85 |
+
<div class="footer">
|
86 |
+
<div class="footer-left">speaker name</div>
|
87 |
+
<div class="footer-right">date</div>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
</body>
|
91 |
+
</html>
|